Skip to content

Commit

Permalink
further simplification and cleaning of diagram
Browse files Browse the repository at this point in the history
Signed-off-by: Alfredo Gutierrez <[email protected]>
  • Loading branch information
AlfredoG87 committed Dec 6, 2024
1 parent e0e1f99 commit adad789
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions server/docs/design/block-verification.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,14 @@ sequenceDiagram
end
else (3) Append more Block Items
rect rgb(230, 230, 230)
U->>V: onBlockItemsReceived(List<BlockItem>)
V->>S: addBlockItem(item)
V->>S: addBlockItems(items)
V-->>U: return without blocking
S->>S: Continues hash computation asynchronously
end
else (4) Append BlockItems with block_proof
rect rgb(230, 230, 230)
U->>V: onBlockItemsReceived(List<BlockItem>) with block_proof
V->>S: addBlockItem(block_proof)
V->>S: addBlockItems(items with block_proof)
V-->>U: return without blocking
S->>S: completeHashing()
Expand All @@ -113,8 +111,6 @@ sequenceDiagram
end
end
end
```

## Interfaces
Expand Down

0 comments on commit adad789

Please sign in to comment.