1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-14 07:41:19 +00:00

13 lines
187 B
Go
Raw Normal View History

package node
import (
amino "github.com/tendermint/go-amino"
crypto "github.com/tendermint/tendermint/crypto"
)
var cdc = amino.NewCodec()
func init() {
crypto.RegisterAmino(cdc)
}