mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
14 lines
216 B
Go
14 lines
216 B
Go
package blockchain
|
|
|
|
import (
|
|
"github.com/tendermint/go-amino"
|
|
"github.com/tendermint/tendermint/types"
|
|
)
|
|
|
|
var cdc = amino.NewCodec()
|
|
|
|
func init() {
|
|
RegisterBlockchainMessages(cdc)
|
|
types.RegisterBlockAmino(cdc)
|
|
}
|