bank registers crypto

This commit is contained in:
rigelrozanski 2018-02-28 23:35:38 +00:00
parent 65f27f2daa
commit 1d3904dfd3
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,6 @@ import (
"encoding/json"
abci "github.com/tendermint/abci/types"
crypto "github.com/tendermint/go-crypto"
"github.com/tendermint/go-wire"
cmn "github.com/tendermint/tmlibs/common"
dbm "github.com/tendermint/tmlibs/db"
@ -74,8 +73,7 @@ func NewBasecoinApp(logger log.Logger, db dbm.DB) *BasecoinApp {
func MakeTxCodec() *wire.Codec {
cdc := wire.NewCodec()
cdc.RegisterInterface((*sdk.Msg)(nil), nil)
crypto.RegisterWire(cdc) // Register crypto.[PubKey,PrivKey,Signature] types.
bank.RegisterWire(cdc) // Register bank.[SendMsg,IssueMsg] types.
bank.RegisterWire(cdc) // Register bank.[SendMsg,IssueMsg] types.
return cdc
}

View File

@ -1,6 +1,7 @@
package bank
import (
crypto "github.com/tendermint/go-crypto"
"github.com/tendermint/go-wire"
)
@ -8,4 +9,5 @@ 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)
crypto.RegisterWire(cdc) // Register crypto.[PubKey,PrivKey,Signature] types.
}