Skip to content

Commit

Permalink
Implement the Pollard
Browse files Browse the repository at this point in the history
Pollard is a middle-grownd between full tree and Stump that allows
holding only a subset of UTXOs, while still allowing proving those
elements.
This implementation only allows for full pollards, where all leaves are
present. Allowing partial pollard will be accomplished later.

The implementation uses interior mutability to work. A Pollard is
different from a normal Binary Tree because nodes points to it's
sibling, not their children. This makes recursive algoritms more
evolved, specially during deletions.

This implementation is all iteractive, and carefully uses interior
mutability with Cell and RefCell. Those smart pointers allows
runtime borrow checking, if some of the Borrowing Rules is broken, it
panics. Here, we take care of not holding reference to the interior of a
Cell or RefCell for too log, and not passing `mut ref` arround. Only a
few functions with very limited scope can use `mut ref`s.

A extensible collection of tests is also provided, to check for code
correctness and soundness.
  • Loading branch information
Davidson-Souza committed Mar 13, 2023
1 parent ff46d1f commit d204bb0
Show file tree
Hide file tree
Showing 3 changed files with 811 additions and 50 deletions.
4 changes: 1 addition & 3 deletions src/accumulator/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#![allow(dead_code)]

pub mod pollard;
pub mod proof;
pub mod stump;
pub mod types;
pub mod util;
pub mod util;
Loading

0 comments on commit d204bb0

Please sign in to comment.