From 9895ec0f4179f27f3d5563834ebf8c2bf7845052 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 14 Aug 2023 06:54:34 -0400 Subject: [PATCH] Add note to processor --- processor/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/processor/src/main.rs b/processor/src/main.rs index b03eeef8..89076ecc 100644 --- a/processor/src/main.rs +++ b/processor/src/main.rs @@ -225,6 +225,8 @@ async fn sign_plans( 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; } + + // TODO: If the TX is None, should we restore its inputs to the scheduler? } }