10 lines
149 B
Go
10 lines
149 B
Go
|
package common
|
||
|
|
||
|
import "math"
|
||
|
|
||
|
const BurningRate = 0.001
|
||
|
|
||
|
func CalcBurning(trxAmount float64) float64 {
|
||
|
return BurningRate * math.Sqrt(trxAmount)
|
||
|
}
|