patch auth register cdc (#5892)
* readd RegisterAccountTypeCodec * fix * remove seal * update BaseAccount and StdSig to use amino codec * remove comments * rename * changelog * rename
This commit is contained in:
parent
e5bde0199e
commit
6a6fd1c7ac
|
@ -94,6 +94,8 @@ to now accept a `codec.JSONMarshaler` for modular serialization of genesis state
|
|||
* (modules) [\#5569](https://github.com/cosmos/cosmos-sdk/issues/5569) `InitGenesis`, for the relevant modules, now ensures module accounts exist.
|
||||
* (crypto/keyring) [\#5844](https://github.com/cosmos/cosmos-sdk/pull/5844) Keybase/Keyring `Sign()` methods no longer decode amino signatures
|
||||
when method receivers are offline/multisig keys.
|
||||
* (x/auth) [\#5892](https://github.com/cosmos/cosmos-sdk/pull/5892) Add `RegisterKeyTypeCodec` to register new
|
||||
types (eg. keys) to the `auth` module internal amino codec.
|
||||
|
||||
### State Machine Breaking
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@ import (
|
|||
"github.com/tendermint/tendermint/crypto"
|
||||
yaml "gopkg.in/yaml.v2"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/auth/exported"
|
||||
)
|
||||
|
@ -61,7 +60,7 @@ func (acc BaseAccount) GetPubKey() (pk crypto.PubKey) {
|
|||
return nil
|
||||
}
|
||||
|
||||
codec.Cdc.MustUnmarshalBinaryBare(acc.PubKey, &pk)
|
||||
amino.MustUnmarshalBinaryBare(acc.PubKey, &pk)
|
||||
return pk
|
||||
}
|
||||
|
||||
|
|
|
@ -26,6 +26,13 @@ func RegisterCodec(cdc *codec.Codec) {
|
|||
cdc.RegisterConcrete(StdTx{}, "cosmos-sdk/StdTx", nil)
|
||||
}
|
||||
|
||||
// RegisterKeyTypeCodec registers an external concrete type defined in
|
||||
// another module for the internal ModuleCdc.
|
||||
func RegisterKeyTypeCodec(o interface{}, name string) {
|
||||
amino.RegisterConcrete(o, name, nil)
|
||||
ModuleCdc = codec.NewHybridCodec(amino)
|
||||
}
|
||||
|
||||
var (
|
||||
amino = codec.New()
|
||||
|
||||
|
@ -41,5 +48,4 @@ var (
|
|||
func init() {
|
||||
RegisterCodec(amino)
|
||||
codec.RegisterCrypto(amino)
|
||||
amino.Seal()
|
||||
}
|
||||
|
|
|
@ -79,7 +79,7 @@ func (ss StdSignature) GetPubKey() (pk crypto.PubKey) {
|
|||
return nil
|
||||
}
|
||||
|
||||
codec.Cdc.MustUnmarshalBinaryBare(ss.PubKey, &pk)
|
||||
amino.MustUnmarshalBinaryBare(ss.PubKey, &pk)
|
||||
return pk
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue