Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite committed May 30, 2024
1 parent 244ce0b commit 05c4ac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x/proof/types/message_update_param.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (msg *MsgUpdateParam) ValidateBasic() error {
case ParamMinRelayDifficultyBits:
return msg.paramTypeIsInt64()
default:
return ErrProofParamNameInvalid.Wrapf("unsupported name param %q", msg.Name)
return ErrProofParamNameInvalid.Wrapf("unsupported param %q", msg.Name)
}
}

Expand Down
2 changes: 1 addition & 1 deletion x/tokenomics/types/message_update_param.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (msg *MsgUpdateParam) ValidateBasic() error {
case ParamComputeUnitsToTokensMultiplier:
return msg.paramTypeIsInt64()
default:
return ErrTokenomicsParamNameInvalid.Wrapf("unsupported name param %q", msg.Name)
return ErrTokenomicsParamNameInvalid.Wrapf("unsupported param %q", msg.Name)
}
}

Expand Down

0 comments on commit 05c4ac0

Please sign in to comment.