Merge PR #4846: Add RegisterEvidences

This commit is contained in:
Alexander Bezobchuk 2019-08-05 12:42:34 -04:00 committed by GitHub
parent 593ea5c609
commit 478eda1f7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 3 deletions

View File

@ -0,0 +1,2 @@
#4843 Add RegisterEvidences function in the codec package to register
Tendermint evidence types with a given codec.

View File

@ -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()
}