github.com/franono/tendermint@v0.32.2-0.20200527150959-749313264ce9/consensus/types/codec.go (about)

     1  package types
     2  
     3  import (
     4  	amino "github.com/tendermint/go-amino"
     5  
     6  	"github.com/franono/tendermint/types"
     7  )
     8  
     9  var cdc = amino.NewCodec()
    10  
    11  func init() {
    12  	types.RegisterBlockAmino(cdc)
    13  }