Skip to content

Commit 30ebc87

Browse files
committed
remove extra logs
1 parent 62c711c commit 30ebc87

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

dot/sync/chain_sync.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,6 @@ func (cs *chainSync) doSync(req *network.BlockRequestMessage, peersTried map[pee
693693
// response was validated! place into ready block queue
694694
for _, bd := range resp.BlockData {
695695
// block is ready to be processed!
696-
logger.Infof("handling block response block %v", bd)
697696
cs.handleReadyBlock(bd)
698697
}
699698

dot/sync/tip_syncer.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ func (s *tipSyncer) handleTick() ([]*worker, error) {
215215
if has || s.readyBlocks.has(block.header.ParentHash) {
216216
// block is ready, as parent is known!
217217
// also, move any pendingBlocks that are descendants of this block to the ready blocks queue
218-
logger.Infof("moving block from pending to ready: block=%v", block.toBlockData())
219218
s.handleReadyBlock(block.toBlockData())
220219
continue
221220
}

0 commit comments

Comments
 (0)