mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
13 lines
175 B
Go
13 lines
175 B
Go
|
package types
|
||
|
|
||
|
import (
|
||
|
"github.com/tendermint/go-amino"
|
||
|
"github.com/tendermint/tendermint/crypto"
|
||
|
)
|
||
|
|
||
|
var cdc = amino.NewCodec()
|
||
|
|
||
|
func init() {
|
||
|
crypto.RegisterAmino(cdc)
|
||
|
}
|