Open
Description
Description
See this comment for context.
Currently we allow for reconstruction and multiple column computation for the same block to happen at the same time, this is wasteful and we can avoid this.
In PendingComponents
, we track reconstruction with a bool reconstruction_started
and we track blob to column computation with a data_column_recv
. We should be able to replace the reconstruction_started
usage with data_column_recv
as well, and check if data_column_recv
is Some
before triggering either 1/ blob to column computation or 2/ column reconstruction.