Register crypto on amino codecs, update changelog
This commit is contained in:
parent
e9545d69ed
commit
0371109039
|
@ -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
|
||||
|
||||
|
|
|
@ -15,4 +15,5 @@ var msgCdc = wire.NewCodec()
|
|||
|
||||
func init() {
|
||||
RegisterWire(msgCdc)
|
||||
wire.RegisterCrypto(msgCdc)
|
||||
}
|
||||
|
|
|
@ -15,5 +15,6 @@ func RegisterWire(cdc *wire.Codec) {
|
|||
var msgCdc = wire.NewCodec()
|
||||
|
||||
func init() {
|
||||
RegisterWire(msgCdc)
|
||||
wire.RegisterCrypto(msgCdc)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue