diff --git a/app/modules/crawler/lib/sync.ts b/app/modules/crawler/lib/sync.ts index aa7e6e6a1d96b5d00b2ebb812e892d6669c9381a..e5f39d8a7a77ae0209540c5d0a8e36baddcce7f9 100644 --- a/app/modules/crawler/lib/sync.ts +++ b/app/modules/crawler/lib/sync.ts @@ -258,7 +258,8 @@ export class Synchroniser extends stream.Duplex { return block; } async applyMainBranch(block: BlockDTO): Promise<boolean> { - const addedBlock = await this.BlockchainService.submitBlock(block) + const addedBlock = await this.BlockchainService.submitBlock(block, true) + await this.BlockchainService.blockResolution() this.server.streamPush(addedBlock); this.watcher.appliedPercent(Math.floor(block.number / to * 100)); return true