-
Notifications
You must be signed in to change notification settings - Fork 49
/
codec.go
39 lines (34 loc) · 1.1 KB
/
codec.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
package types
import (
"github.com/cosmos/cosmos-sdk/codec"
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/msgservice"
)
func RegisterCodec(cdc *codec.LegacyAmino) {
cdc.RegisterConcrete(&MsgCreatePaymentAccount{}, "payment/CreatePaymentAccount", nil)
cdc.RegisterConcrete(&MsgDeposit{}, "payment/Deposit", nil)
cdc.RegisterConcrete(&MsgWithdraw{}, "payment/Withdraw", nil)
cdc.RegisterConcrete(&MsgDisableRefund{}, "payment/DisableRefund", nil)
}
func RegisterInterfaces(registry cdctypes.InterfaceRegistry) {
registry.RegisterImplementations((*sdk.Msg)(nil),
&MsgCreatePaymentAccount{},
)
registry.RegisterImplementations((*sdk.Msg)(nil),
&MsgDeposit{},
)
registry.RegisterImplementations((*sdk.Msg)(nil),
&MsgWithdraw{},
)
registry.RegisterImplementations((*sdk.Msg)(nil),
&MsgDisableRefund{},
)
registry.RegisterImplementations((*sdk.Msg)(nil),
&MsgUpdateParams{},
)
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
}
var (
ModuleCdc = codec.NewProtoCodec(cdctypes.NewInterfaceRegistry())
)