12 lines
209 B
Go
12 lines
209 B
Go
package common
|
|
|
|
const VersionNumber = 0.01
|
|
const MinBurningAmount = 0.001
|
|
|
|
func CalcBurning(trxAmount float64) float64 {
|
|
if trxAmount < 1 {
|
|
return MinBurningAmount
|
|
}
|
|
return trxAmount * MinBurningAmount
|
|
}
|