github.com/fiagdao/tendermint@v0.32.11-0.20220824195748-2087fcc480c1/store/codec.go (about) 1 package store 2 3 import ( 4 amino "github.com/tendermint/go-amino" 5 6 "github.com/tendermint/tendermint/types" 7 ) 8 9 var cdc = amino.NewCodec() 10 11 func init() { 12 types.RegisterBlockAmino(cdc) 13 }