mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-12 21:01:21 +00:00
Make order be decided first; Remove TMSP Commit/Rollback
This commit is contained in:
@ -18,6 +18,6 @@ func BroadcastTx(tx types.Tx) (*ctypes.ResultBroadcastTx, error) {
|
||||
}
|
||||
|
||||
func ListUnconfirmedTxs() (*ctypes.ResultListUnconfirmedTxs, error) {
|
||||
txs, _, err := mempoolReactor.Mempool.Reap()
|
||||
txs, err := mempoolReactor.Mempool.Reap()
|
||||
return &ctypes.ResultListUnconfirmedTxs{len(txs), txs}, err
|
||||
}
|
||||
|
Reference in New Issue
Block a user