mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-08 06:15:33 +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)
|
|
}
|