diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-26 18:26:51 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:58 +0800 |
commit | 3365843034dc55ada5ffa1011ace86ed5d737bae (patch) | |
tree | 29c5fd747592425d516286df2a8566c446bd9e04 | |
parent | 794a00782dd09bd207559e69f8da1be4510e8b62 (diff) | |
download | dexon-3365843034dc55ada5ffa1011ace86ed5d737bae.tar dexon-3365843034dc55ada5ffa1011ace86ed5d737bae.tar.gz dexon-3365843034dc55ada5ffa1011ace86ed5d737bae.tar.bz2 dexon-3365843034dc55ada5ffa1011ace86ed5d737bae.tar.lz dexon-3365843034dc55ada5ffa1011ace86ed5d737bae.tar.xz dexon-3365843034dc55ada5ffa1011ace86ed5d737bae.tar.zst dexon-3365843034dc55ada5ffa1011ace86ed5d737bae.zip |
les: fix tests
-rw-r--r-- | les/handler_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/les/handler_test.go b/les/handler_test.go index 2cbad52c1..6ef6da8e9 100644 --- a/les/handler_test.go +++ b/les/handler_test.go @@ -498,7 +498,7 @@ func TestTransactionStatusLes2(t *testing.T) { chain := pm.blockchain.(*core.BlockChain) config := core.DefaultTxPoolConfig config.Journal = "" - txpool := core.NewTxPool(config, params.TestChainConfig, chain) + txpool := core.NewTxPool(config, params.TestChainConfig, chain, false) pm.txpool = txpool peer, _ := newTestPeer(t, "peer", 2, pm, true) defer peer.close() |