Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
nzpr committed Sep 6, 2022
1 parent 7227a7e commit 1bf96f9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ object BlockReceiver {
next <- state.modify(_.finished(block.blockHash, parents))

// Send dependency free blocks to validation
_ <- next.toList.traverse_(receiverOutputQueue.enqueue1)
dag <- BlockDagStorage[F].getRepresentation
_ <- next.toList.filter(dag.contains).traverse_(receiverOutputQueue.enqueue1)
} yield ()
}

Expand Down

0 comments on commit 1bf96f9

Please sign in to comment.