Register crypto on amino codecs, update changelog

This commit is contained in:
ValarDragon 2018-05-31 12:55:21 -07:00
parent e9545d69ed
commit 0371109039
3 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,7 @@ FEATURES
IMPROVEMENTS
* bank module uses go-wire codec instead of 'encoding/json'
* auth module uses go-wire codec instead of 'encoding/json'
FIXES

View File

@ -15,4 +15,5 @@ var msgCdc = wire.NewCodec()
func init() {
RegisterWire(msgCdc)
wire.RegisterCrypto(msgCdc)
}

View File

@ -15,5 +15,6 @@ func RegisterWire(cdc *wire.Codec) {
var msgCdc = wire.NewCodec()
func init() {
RegisterWire(msgCdc)
wire.RegisterCrypto(msgCdc)
}