Register crypto on amino codecs, update changelog
This commit is contained in:
parent
e9545d69ed
commit
0371109039
|
@ -8,6 +8,7 @@ FEATURES
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
* bank module uses go-wire codec instead of 'encoding/json'
|
* bank module uses go-wire codec instead of 'encoding/json'
|
||||||
|
* auth module uses go-wire codec instead of 'encoding/json'
|
||||||
|
|
||||||
FIXES
|
FIXES
|
||||||
|
|
||||||
|
|
|
@ -15,4 +15,5 @@ var msgCdc = wire.NewCodec()
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
RegisterWire(msgCdc)
|
RegisterWire(msgCdc)
|
||||||
|
wire.RegisterCrypto(msgCdc)
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,5 +15,6 @@ func RegisterWire(cdc *wire.Codec) {
|
||||||
var msgCdc = wire.NewCodec()
|
var msgCdc = wire.NewCodec()
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
RegisterWire(msgCdc)
|
||||||
wire.RegisterCrypto(msgCdc)
|
wire.RegisterCrypto(msgCdc)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue