mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-20 10:11:20 +00:00
14 lines
226 B
Go
14 lines
226 B
Go
|
package blockchain_new
|
||
|
|
||
|
import (
|
||
|
amino "github.com/tendermint/go-amino"
|
||
|
"github.com/tendermint/tendermint/types"
|
||
|
)
|
||
|
|
||
|
var cdc = amino.NewCodec()
|
||
|
|
||
|
func init() {
|
||
|
RegisterBlockchainMessages(cdc)
|
||
|
types.RegisterBlockAmino(cdc)
|
||
|
}
|