-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Separate out utxo_store.rs * Introduce SnapshotProcessor * Rework subcoin-utxo-snapshot * write_utxo_snapshot_in_memory() * New snapshot format compatible with Bitcoin Core * Refactor snapshot_processor * Refactor subcoin-utxo-snapshot * Refactor dump_txout_set * Nits * Nits * Fix test * Remove local tests * Nits * fmt * Fix clippy * . * Verify snapshot integrity in snapcake * Rename snapshot_manager * fmt
- Loading branch information
1 parent
8e88291
commit d493cce
Showing
17 changed files
with
1,313 additions
and
256 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ | |
mod cli; | ||
mod params; | ||
mod snapshot_manager; | ||
mod state_sync_wrapper; | ||
mod syncing_strategy; | ||
|
||
|
Oops, something went wrong.