diff --git a/x/uibc/msg.go b/x/uibc/msg.go index 3b385d09cc..68b2b15950 100644 --- a/x/uibc/msg.go +++ b/x/uibc/msg.go @@ -39,7 +39,8 @@ func (msg *MsgGovUpdateQuota) ValidateBasic() error { errs = append(errs, errors.New("total quota must be greater than or equal to per_denom quota")) } if msg.InflowOutflowQuotaBase.LT(msg.InflowOutflowTokenQuotaBase) { - errs = append(errs, errors.New("inflow_outflow_quota_base must be greater than or equal than inflow_outflow_token_quota_base")) + errs = append(errs, errors.New( + "inflow_outflow_quota_base must be greater than or equal than inflow_outflow_token_quota_base")) } return errors.Join(errs...) diff --git a/x/uibc/msg_test.go b/x/uibc/msg_test.go index d2c687594f..a1f18fe54e 100644 --- a/x/uibc/msg_test.go +++ b/x/uibc/msg_test.go @@ -65,7 +65,7 @@ func TestMsgGovUpdateQuota(t *testing.T) { msg: invalidTotalQuota, errMsg: "total quota must be greater than or equal to per_denom quota", }, { - name: "invalid inflow outflow quota abse with respect to per denom", + name: "invalid inflow outflow quota base with respect to per denom", msg: invalidInflowOutflow, errMsg: "inflow_outflow_quota_base must be greater than", },