From 6e49f2445be0359d9ee601a4dfcb6c9a8fd71e8c Mon Sep 17 00:00:00 2001 From: Alfredo Gutierrez Date: Fri, 6 Dec 2024 01:06:18 -0600 Subject: [PATCH] further simplification and cleaning of diagram Signed-off-by: Alfredo Gutierrez --- server/docs/design/block-verification.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/server/docs/design/block-verification.md b/server/docs/design/block-verification.md index ee4803ecc..52a8f8973 100644 --- a/server/docs/design/block-verification.md +++ b/server/docs/design/block-verification.md @@ -108,12 +108,11 @@ sequenceDiagram Note over SV,BSM: (6) Compare computed hash and signature alt (7) Verification Fails - SV->>BSM: (7) updateBlockStatus(blockNumber, ERROR, SIGNATURE_INVALID) - Note over BSM: (9) Recovery for error handling + SV->>BSM: updateBlockStatus(blockNumber, ERROR, SIGNATURE_INVALID else (8) Verification Succeeds - SV->>BSM: (8) updateBlockStatus(blockNumber, VERIFIED, NONE) - Note over BSM: (9) Follow-up to downstream services + SV->>BSM: updateBlockStatus(blockNumber, VERIFIED, NONE) end + Note over BSM: (9) Follow-up to downstream services end ```