Add note to processor

This commit is contained in:
Luke Parker
2023-08-14 06:54:34 -04:00
parent 666bb3e96b
commit 9895ec0f41

View File

@@ -225,6 +225,8 @@ async fn sign_plans<N: Network, D: Db>(
substrate_mutable.scanner.register_eventuality(block_number, id, eventuality.clone()).await; substrate_mutable.scanner.register_eventuality(block_number, id, eventuality.clone()).await;
signers.get_mut(key.as_ref()).unwrap().sign_transaction(txn, id, tx, eventuality).await; signers.get_mut(key.as_ref()).unwrap().sign_transaction(txn, id, tx, eventuality).await;
} }
// TODO: If the TX is None, should we restore its inputs to the scheduler?
} }
} }