Skip to content
Snippets Groups Projects

Resolve "Implement Web of Trust in a more "rusty" way"

Merged nanocryk requested to merge 28-implement-web-of-trust-in-a-more-rusty-way into dev
2 files
+ 102
22
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -169,7 +169,7 @@ pub trait WebOfTrust {
fn add_node(&mut self) -> NodeId;
/// Remove the last node.
/// Returns `None` if the WoT was empty.
/// Returns `None` if the WoT was empty, otherwise new top node id.
fn rem_node(&mut self) -> Option<NodeId>;
/// Get the size of the WoT.
Loading