From 15aac191e22e23de26408dfdf1bf7c327132bd8e Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Tue, 14 May 2024 08:34:24 +0800 Subject: [PATCH] add another arbitrary godoc --- x/tokenfactory/simulation/genesis.go | 1 + 1 file changed, 1 insertion(+) 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)))