handshake replay through consensus using mockApp

This commit is contained in:
Ethan Buchman
2017-02-16 17:56:45 -05:00
parent 3ebd69db1b
commit cbe6dbe7a1
6 changed files with 92 additions and 87 deletions

View File

@@ -31,7 +31,7 @@ type Consensus interface {
type Mempool interface {
Size() int
CheckTx(types.Tx, func(*abci.Response)) error
Reap(int) []types.Tx
Reap(int) types.Txs
Flush()
}