mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-16 00:21:19 +00:00
10 lines
138 B
Go
10 lines
138 B
Go
package mempool
|
|
|
|
import amino "github.com/tendermint/go-amino"
|
|
|
|
var cdc = amino.NewCodec()
|
|
|
|
func init() {
|
|
RegisterMempoolMessages(cdc)
|
|
}
|