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

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