1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-06 18:11: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)
}