-
Notifications
You must be signed in to change notification settings - Fork 30
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
feat(rpc): storage proofs for snos and v0.8.0 #292
Open
cchudant
wants to merge
12
commits into
main
Choose a base branch
from
storage-proofs
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
e71cce5
feat(rpc): storage proofs for v0.8.0
cchudant 52a9207
historical
cchudant 15c2610
merged with main
cchudant 3d73f24
fix, and add trie log args to cli
cchudant d1361a0
starting to make an e2e test
cchudant 62fc546
e2e test
cchudant 27ccc75
Merge remote-tracking branch 'origin/main' into storage-proofs
cchudant f45114e
fix: tests
cchudant 2d980ef
fix: fmt, logs & bonsai-trie path
cchudant 8404e2d
fix: changelog
cchudant acf3c67
fix: review
cchudant b0a72df
Merge remote-tracking branch 'origin/main' into storage-proofs
cchudant File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,12 +85,11 @@ version = "0.7.0" | |
license = "Apache-2.0" | ||
|
||
[workspace.dependencies] | ||
rocksdb = { version = "0.22", features = [ | ||
# "multi-threaded-cf", | ||
] } | ||
rocksdb = { version = "0.22", git = "https://github.com/madara-alliance/rust-rocksdb", branch = "read-options-set-raw-snapshot" } | ||
librocksdb-sys = { version = "0.17.0", git = "https://github.com/madara-alliance/rust-rocksdb", branch = "read-options-set-raw-snapshot" } | ||
|
||
# Bonsai trie dependencies | ||
bonsai-trie = { default-features = false, git = "https://github.com/cchudant/bonsai-trie.git", branch = "fix_inserts_remove_leaks", features = [ | ||
bonsai-trie = { default-features = false, git = "https://github.com/madara-alliance/bonsai-trie", branch = "trie-log", features = [ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The base branch is |
||
"std", | ||
] } | ||
|
||
|
@@ -178,6 +177,7 @@ once_cell = "1.19" | |
log = { version = "0.4", features = [ | ||
"std", | ||
"kv_std", | ||
# Statically disable trace logs in release builds. | ||
"release_max_level_debug", | ||
] } | ||
num-traits = "0.2" | ||
|
@@ -188,7 +188,10 @@ indoc = "2" | |
reqwest = { version = "0.12", features = ["blocking", "json"] } | ||
rstest = "0.18" | ||
serde = { version = "1.0", default-features = false, features = ["std"] } | ||
serde_with = "3.9" | ||
serde_with = { version = "2.3.2", default-features = false, features = [ | ||
"alloc", | ||
"macros", | ||
] } | ||
serde_json = { version = "1.0", default-features = false, features = ["std"] } | ||
serde_yaml = { version = "0.9.34" } | ||
thiserror = "1.0" | ||
|
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're using different versions of the same branch?