Dirty workaround for #2218

This commit is contained in:
Mamy André-Ratsimbazafy 2021-01-08 08:04:27 +01:00
parent f06e6d46a2
commit ccd8642d16
No known key found for this signature in database
GPG Key ID: 7B88AD1FE79492E1
1 changed files with 2 additions and 2 deletions

View File

@ -717,7 +717,8 @@ proc startSyncManager(node: BeaconNode) =
node.syncManager = newSyncManager[Peer, PeerID](
node.network.peerPool, getLocalHeadSlot, getLocalWallSlot,
getFirstSlotAtFinalizedEpoch, node.processor.blocksQueue, chunkSize = 32
getFirstSlotAtFinalizedEpoch, node.processor.blocksQueue, chunkSize = 32,
tolerance_value = 2
)
node.syncManager.start()
@ -1539,4 +1540,3 @@ programMain:
waitFor testWeb3Provider(config.web3TestUrl,
depositContractAddress,
depositContractDeployedAt)