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