mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
13 lines
179 B
Go
13 lines
179 B
Go
|
package node
|
||
|
|
||
|
import (
|
||
|
amino "github.com/tendermint/go-amino"
|
||
|
crypto "github.com/tendermint/go-crypto"
|
||
|
)
|
||
|
|
||
|
var cdc = amino.NewCodec()
|
||
|
|
||
|
func init() {
|
||
|
crypto.RegisterAmino(cdc)
|
||
|
}
|