github.com/pokt-network/tendermint@v0.32.11-0.20230426215212-59310158d3e9/mempool/codec.go (about)

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