1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-04-29 16:52:15 +00:00

13 lines
184 B
Go
Raw Permalink Normal View History

package types
import (
amino "github.com/tendermint/go-amino"
"github.com/tendermint/tendermint/types"
)
var cdc = amino.NewCodec()
func init() {
2018-07-26 18:08:09 -07:00
types.RegisterBlockAmino(cdc)
}