mempool: moved TxInfo parameter into Mempool.CheckTx() (#4083)

* mempool: moved TxInfo parameter into Mempool.CheckTx().

* Updated CHANGELOG_PENDING.md

* Added PR issue to CHANGELOG_PENDING

Fixes #3590
This commit is contained in:
Erik Grinaker
2019-11-04 13:50:22 +04:00
committed by Anton Kaliaev
parent 76deaa986e
commit 745846bd96
14 changed files with 47 additions and 56 deletions
+1 -1
View File
@@ -267,7 +267,7 @@ func TestCreateProposalBlock(t *testing.T) {
txLength := 1000
for i := 0; i < maxBytes/txLength; i++ {
tx := cmn.RandBytes(txLength)
err := mempool.CheckTx(tx, nil)
err := mempool.CheckTx(tx, nil, mempl.TxInfo{})
assert.NoError(t, err)
}