From b9fee1eed8a84d5bf7aa57efe04a4819e2552521 Mon Sep 17 00:00:00 2001 From: Warren He Date: Fri, 25 Mar 2022 16:07:33 -0700 Subject: [PATCH] dispatcher: add note about incoming messages events --- runtime-sdk/src/dispatcher.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime-sdk/src/dispatcher.rs b/runtime-sdk/src/dispatcher.rs index df0de1a740..b532c31f63 100644 --- a/runtime-sdk/src/dispatcher.rs +++ b/runtime-sdk/src/dispatcher.rs @@ -359,6 +359,7 @@ impl Dispatcher { }; // Use the ID as index. let index = in_msg.id.try_into().unwrap(); + // todo: put result tags in block Self::execute_tx(ctx, tx_size, tx.clone(), index)?; } Ok(())