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"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
amino "github.com/tendermint/go-amino"
|
"github.com/tendermint/go-amino"
|
||||||
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
cryptoamino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
||||||
|
tmtypes "github.com/tendermint/tendermint/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
// amino codec to marshal/unmarshal
|
// amino codec to marshal/unmarshal
|
||||||
|
@ -18,7 +19,12 @@ func New() *Codec {
|
||||||
|
|
||||||
// Register the go-crypto to the codec
|
// Register the go-crypto to the codec
|
||||||
func RegisterCrypto(cdc *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
|
// attempt to make some pretty json
|
||||||
|
@ -54,5 +60,6 @@ var Cdc *Codec
|
||||||
func init() {
|
func init() {
|
||||||
cdc := New()
|
cdc := New()
|
||||||
RegisterCrypto(cdc)
|
RegisterCrypto(cdc)
|
||||||
|
RegisterEvidences(cdc)
|
||||||
Cdc = cdc.Seal()
|
Cdc = cdc.Seal()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue