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