-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(rln-relay): pass in the path to the tree db (#1782)
* chore(rln-relay): pass in the path to the tree db * fix(rln-relay): address visibility Co-authored-by: Ivan Folgueira Bande <128452529+Ivansete-status@users.noreply.github.com> * fix(rln-relay): make db used more explicit * fix(rln-relay): reduce visibility --------- Co-authored-by: Ivan Folgueira Bande <128452529+Ivansete-status@users.noreply.github.com>
- Loading branch information
1 parent
93e09b8
commit dba8424
Showing
5 changed files
with
55 additions
and
18 deletions.
There are no files selected for viewing
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
Submodule zerokit
updated
19 files
+36 −104 | .github/workflows/ci.yml | |
+4 −4 | .github/workflows/nightly-release.yml | |
+1 −1 | .github/workflows/sync-labels.yml | |
+244 −6 | Cargo.lock | |
+1 −0 | Cargo.toml | |
+13 −0 | rln-cli/Cargo.toml | |
+65 −0 | rln-cli/src/commands.rs | |
+29 −0 | rln-cli/src/config.rs | |
+154 −0 | rln-cli/src/main.rs | |
+23 −0 | rln-cli/src/state.rs | |
+4 −3 | rln-wasm/tests/rln-wasm.rs | |
+6 −0 | rln/Cargo.toml | |
+4 −0 | rln/Makefile.toml | |
+44 −0 | rln/benches/pmtree_benchmark.rs | |
+34 −3 | rln/src/pm_tree_adapter.rs | |
+8 −0 | utils/Cargo.toml | |
+4 −0 | utils/Makefile.toml | |
+15 −0 | utils/README.md | |
+119 −0 | utils/benches/merkle_tree_benchmark.rs |
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