micw/common/consts.go
2024-11-13 22:10:13 +01:00

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
}