You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently, the simulation tests uses non EVM token decimals in some places:
non 10^18 power reduction
funding genesis accounts with int64 amounts
different fees have adym notion instead of DYM
e.g x/incentives/simulation/genesis.go:
func getFee(r *rand.Rand) math.Int {
// use comparatively small numbers as the initial account balance is always bounded with max Int64 in simulation
w, _ := simulation.RandPositiveInt(r, commontypes.ADYM.MulRaw(100_000))
return w
}
The text was updated successfully, but these errors were encountered:
currently, the simulation tests uses non EVM token decimals in some places:
adym
notion instead ofDYM
e.g
x/incentives/simulation/genesis.go
:The text was updated successfully, but these errors were encountered: