diff --git a/x/tokenfactory/simulation/genesis.go b/x/tokenfactory/simulation/genesis.go index 98da6f144..41660c470 100644 --- a/x/tokenfactory/simulation/genesis.go +++ b/x/tokenfactory/simulation/genesis.go @@ -10,6 +10,7 @@ import ( "github.com/CosmosContracts/juno/v22/x/tokenfactory/types" ) +// RandDenomCreationFeeParam returns a random DenomCreationFeeParam func RandDenomCreationFeeParam(r *rand.Rand) sdk.Coins { amount := r.Int63n(10_000_000) return sdk.NewCoins(sdk.NewCoin(appparams.BondDenom, sdk.NewInt(amount)))