1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-01 01:32:13 +00:00

13 lines
179 B
Go
Raw Permalink Normal View History

2018-04-07 19:53:29 +03:00
package node
import (
amino "github.com/tendermint/go-amino"
crypto "github.com/tendermint/go-crypto"
)
var cdc = amino.NewCodec()
func init() {
crypto.RegisterAmino(cdc)
}