mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
12 lines
137 B
Go
12 lines
137 B
Go
|
package mempool
|
||
|
|
||
|
import (
|
||
|
"github.com/tendermint/go-amino"
|
||
|
)
|
||
|
|
||
|
var cdc = amino.NewCodec()
|
||
|
|
||
|
func init() {
|
||
|
RegisterMempoolMessages(cdc)
|
||
|
}
|