From 8afad9843f867e3e29f0516d14239daf3ec5779a Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Wed, 20 Apr 2022 12:12:30 -0600 Subject: [PATCH] bug, nodes should not have blocks in local store --- tests/dagger/blockexc/discovery/testdiscovery.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dagger/blockexc/discovery/testdiscovery.nim b/tests/dagger/blockexc/discovery/testdiscovery.nim index bd596a56..8f075253 100644 --- a/tests/dagger/blockexc/discovery/testdiscovery.nim +++ b/tests/dagger/blockexc/discovery/testdiscovery.nim @@ -117,7 +117,7 @@ suite "E2E - Multiple Nodes Discovery": discovery = MockDiscovery.new(s.peerInfo, 0.Port) wallet = WalletRef.example network = BlockExcNetwork.new(s) - localStore = CacheStore.new(blocks.mapIt( it )) + localStore = CacheStore.new() engine = BlockExcEngine.new(localStore, wallet, network, discovery) networkStore = NetworkStore.new(engine, localStore)