Skip to content

Commit

Permalink
fix(simulator): scope key to tf module
Browse files Browse the repository at this point in the history
  • Loading branch information
fmorency committed Jun 26, 2024
1 parent ef9406b commit 3913e65
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions x/tokenfactory/simulation/operations.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ import (
//
//nolint:gosec
const (
OpWeightMsgCreateDenom = "op_weight_msg_create_denom"
OpWeightMsgMint = "op_weight_msg_mint"
OpWeightMsgBurn = "op_weight_msg_burn"
OpWeightMsgChangeAdmin = "op_weight_msg_change_admin"
OpWeightMsgSetDenomMetadata = "op_weight_msg_set_denom_metadata"
OpWeightMsgForceTransfer = "op_weight_msg_force_transfer"
OpWeightMsgCreateDenom = "op_weight_msg_tf_create_denom"
OpWeightMsgMint = "op_weight_msg_tf_mint"
OpWeightMsgBurn = "op_weight_msg_tf_burn"
OpWeightMsgChangeAdmin = "op_weight_msg_tf_change_admin"
OpWeightMsgSetDenomMetadata = "op_weight_msg_tf_set_denom_metadata"
OpWeightMsgForceTransfer = "op_weight_msg_tf_force_transfer"

DefaultWeightMsgCreateDenom int = 100
DefaultWeightMsgMint int = 100
Expand Down

0 comments on commit 3913e65

Please sign in to comment.