cosmos-sdk/x/bank/wire.go

12 lines
276 B
Go
Raw Normal View History

2018-01-20 19:00:56 -08:00
package bank
import (
"github.com/tendermint/go-wire"
)
func RegisterWire(cdc *wire.Codec) {
// TODO include option to always include prefix bytes.
cdc.RegisterConcrete(SendMsg{}, "cosmos-sdk/SendMsg", nil)
cdc.RegisterConcrete(IssueMsg{}, "cosmos-sdk/IssueMsg", nil)
}