diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-26 18:26:51 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 124102ddc1fd10571be2a83c4f1c40a85dfdcc37 (patch) | |
tree | b776bd3748f45768709679d3b88b732f3c96ec33 /les | |
parent | 73a301731264f567637eacdaabc34e17a4903f9c (diff) | |
download | dexon-124102ddc1fd10571be2a83c4f1c40a85dfdcc37.tar.gz dexon-124102ddc1fd10571be2a83c4f1c40a85dfdcc37.tar.zst dexon-124102ddc1fd10571be2a83c4f1c40a85dfdcc37.zip |
les: fix tests
Diffstat (limited to 'les')
-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() |