Merge pull request #15521 from rjl493456442/clean_tx_journal

les: clean up tx journal file after testing
release/1.8
Péter Szilágyi 7 years ago committed by GitHub
commit 049797d40a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      les/handler_test.go

@ -416,7 +416,9 @@ func TestTransactionStatusLes2(t *testing.T) {
db, _ := ethdb.NewMemDatabase()
pm := newTestProtocolManagerMust(t, false, 0, nil, nil, nil, db)
chain := pm.blockchain.(*core.BlockChain)
txpool := core.NewTxPool(core.DefaultTxPoolConfig, params.TestChainConfig, chain)
config := core.DefaultTxPoolConfig
config.Journal = ""
txpool := core.NewTxPool(config, params.TestChainConfig, chain)
pm.txpool = txpool
peer, _ := newTestPeer(t, "peer", 2, pm, true)
defer peer.close()

Loading…
Cancel
Save