diff options
author | Péter Szilágyi <peterke@gmail.com> | 2019-07-31 17:07:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-31 17:07:03 +0800 |
commit | 7f3362595a3bdf1c27b17f16b7d90d89882312ab (patch) | |
tree | 7497a593073b3ff03212945efe731c103e75e9ca /les | |
parent | 96ab8e1575bb5e3a12a70dc6f349f4baa32f710a (diff) | |
parent | 140a7e91778447e058c1811103037437b2091c6e (diff) | |
download | go-tangerine-7f3362595a3bdf1c27b17f16b7d90d89882312ab.tar go-tangerine-7f3362595a3bdf1c27b17f16b7d90d89882312ab.tar.gz go-tangerine-7f3362595a3bdf1c27b17f16b7d90d89882312ab.tar.bz2 go-tangerine-7f3362595a3bdf1c27b17f16b7d90d89882312ab.tar.lz go-tangerine-7f3362595a3bdf1c27b17f16b7d90d89882312ab.tar.xz go-tangerine-7f3362595a3bdf1c27b17f16b7d90d89882312ab.tar.zst go-tangerine-7f3362595a3bdf1c27b17f16b7d90d89882312ab.zip |
Merge pull request #19902 from karalabe/simulated-close
accounts/abi/bind: support closing a simulated backend
Diffstat (limited to 'les')
-rw-r--r-- | les/helper_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/les/helper_test.go b/les/helper_test.go index fb9117ad1..d66cfa1a5 100644 --- a/les/helper_test.go +++ b/les/helper_test.go @@ -422,6 +422,7 @@ func newServerEnv(t *testing.T, blocks int, protocol int, waitIndexers func(*cor // Note bloom trie indexer will be closed by it parent recursively. cIndexer.Close() bIndexer.Close() + b.Close() } } @@ -503,5 +504,7 @@ func newClientServerEnv(t *testing.T, blocks int, protocol int, waitIndexers fun bIndexer.Close() lcIndexer.Close() lbIndexer.Close() + b.Close() + lb.Close() } } |