micw/common/consts.go

12 lines
209 B
Go
Raw Normal View History

2024-11-13 21:10:13 +00:00
package common
const VersionNumber = 0.01
const MinBurningAmount = 0.001
func CalcBurning(trxAmount float64) float64 {
if trxAmount < 1 {
return MinBurningAmount
}
return trxAmount * MinBurningAmount
}