We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85dd47a commit 5ab503aCopy full SHA for 5ab503a
coprocessor/fhevm-engine/scheduler/src/dfg.rs
@@ -282,6 +282,13 @@ impl DFTxGraph {
282
.node_weight_mut(tx_node_index)
283
.ok_or(SchedulerError::DataflowGraphError)?;
284
tx_node.is_uncomputable = true;
285
+ for (_idx, op) in tx_node.graph.graph.node_references() {
286
+ self.results.push(DFGTxResult {
287
+ transaction_id: tx_node.transaction_id.clone(),
288
+ handle: op.result_handle.to_vec(),
289
+ compressed_ct: Err(SchedulerError::MissingInputs.into()),
290
+ });
291
+ }
292
for edge in edges.edges_directed(tx_node_index, Direction::Outgoing) {
293
let dependent_tx_index = edge.target();
294
self.set_uncomputable(dependent_tx_index, edges)?;
0 commit comments