From bef51771afbe9c34d590eb833c0d4972401f08d8 Mon Sep 17 00:00:00 2001 From: Jacinta Ferrant Date: Fri, 12 Jan 2024 08:39:47 -0500 Subject: [PATCH] Add braindumped psuedo code function for extracting block responses from signature Signed-off-by: Jacinta Ferrant --- stacks-signer/src/runloop.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stacks-signer/src/runloop.rs b/stacks-signer/src/runloop.rs index 140d8af562..c4ae8eb574 100644 --- a/stacks-signer/src/runloop.rs +++ b/stacks-signer/src/runloop.rs @@ -274,7 +274,8 @@ impl RunLoop { warn!("Received an unrecognized message type from .miners stacker-db slot id {}: {:?}", chunk.slot_id, ptr); continue; }; - + //TODO: trigger the signing round here instead. Then deserialize the block and call the validation as you validate its contents + // https://github.com/stacks-network/stacks-core/issues/3930 // Received a block proposal from the miner. Submit it for verification. self.stacks_client .submit_block_for_validation(block)