Merge PR #4846: Add RegisterEvidences
This commit is contained in:
parent
593ea5c609
commit
478eda1f7e
|
@ -0,0 +1,2 @@
|
|||
#4843 Add RegisterEvidences function in the codec package to register
|
||||
Tendermint evidence types with a given codec.
|
|
@ -5,8 +5,9 @@ import (
|
|||
"encoding/json"
|
||||
"fmt"
|
||||
|
||||
amino "github.com/tendermint/go-amino"
|
||||
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
||||
"github.com/tendermint/go-amino"
|
||||
cryptoamino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
||||
tmtypes "github.com/tendermint/tendermint/types"
|
||||
)
|
||||
|
||||
// amino codec to marshal/unmarshal
|
||||
|
@ -18,7 +19,12 @@ func New() *Codec {
|
|||
|
||||
// Register the go-crypto to the codec
|
||||
func RegisterCrypto(cdc *Codec) {
|
||||
cryptoAmino.RegisterAmino(cdc)
|
||||
cryptoamino.RegisterAmino(cdc)
|
||||
}
|
||||
|
||||
// RegisterEvidences registers Tendermint evidence types with the provided codec.
|
||||
func RegisterEvidences(cdc *Codec) {
|
||||
tmtypes.RegisterEvidences(cdc)
|
||||
}
|
||||
|
||||
// attempt to make some pretty json
|
||||
|
@ -54,5 +60,6 @@ var Cdc *Codec
|
|||
func init() {
|
||||
cdc := New()
|
||||
RegisterCrypto(cdc)
|
||||
RegisterEvidences(cdc)
|
||||
Cdc = cdc.Seal()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue