Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix utreexo roots matching #284

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Try to run script validation with external Cairo crate.

Tasks:

* [ ] Integrate Shinigami-script
* [x] Integrate Shinigami-script

### Milestone 4 - UTXO set verification

Expand All @@ -92,7 +92,7 @@ Tasks:
* [x] implement Utreexo single output removal
* [x] implement Utreexo bridge node that generates individual inclusion proofs
* [x] implement script that runs the program e2e for a span of blocks
* [ ] implement Utreexo accumulator version compatible with [rustreexo](https://github.com/mit-dci/rustreexo)
* [x] implement Utreexo accumulator version compatible with [rustreexo](https://github.com/mit-dci/rustreexo)

### Milestone 5 - Full consensus validation

Expand Down
4 changes: 4 additions & 0 deletions packages/utreexo/src/lib.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ pub mod vanilla {
pub mod state;
pub mod proof;
pub mod accumulator;
#[cfg(test)]
mod accumulator_tests;
}
pub mod stump {
pub mod state;
pub mod proof;
pub mod accumulator;
#[cfg(test)]
mod accumulator_tests;
}
pub mod test;

Expand Down
Loading
Loading