-
Notifications
You must be signed in to change notification settings - Fork 170
/
msg.go
47 lines (35 loc) · 1.22 KB
/
msg.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package ugov
import (
"fmt"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx"
"github.com/umee-network/umee/v5/util/checkers"
)
var (
_ sdk.Msg = &MsgGovUpdateMinGasPrice{}
// amino
_ legacytx.LegacyMsg = &MsgGovUpdateMinGasPrice{}
)
// ValidateBasic implements Msg
func (msg *MsgGovUpdateMinGasPrice) ValidateBasic() error {
if err := checkers.IsGovAuthority(msg.Authority); err != nil {
return err
}
return msg.MinGasPrice.Validate()
}
// GetSignBytes implements Msg
func (msg *MsgGovUpdateMinGasPrice) GetSigners() []sdk.AccAddress {
return checkers.Signers(msg.Authority)
}
// String implements Stringer interface
func (msg *MsgGovUpdateMinGasPrice) String() string {
return fmt.Sprintf("<authority: %s, min_gas_price: %s>", msg.Authority, msg.MinGasPrice.String())
}
// Route implements LegacyMsg.Route
func (msg MsgGovUpdateMinGasPrice) Route() string { return "" }
// GetSignBytes implements the LegacyMsg.GetSignBytes
func (msg MsgGovUpdateMinGasPrice) GetSignBytes() []byte {
return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(&msg))
}
// GetSignBytes implements the LegacyMsg.Type
func (msg MsgGovUpdateMinGasPrice) Type() string { return sdk.MsgTypeURL(&msg) }