Skip to content

Commit

Permalink
Merge pull request #28 from datachainlab/fix-verify-membership
Browse files Browse the repository at this point in the history
Fix to give a raw value to `client_state::verify_membership()` in `verify_membership()`

Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele authored Nov 17, 2024
2 parents e8d6e57 + 5355663 commit 7a40e6a
Show file tree
Hide file tree
Showing 4 changed files with 732 additions and 21 deletions.
47 changes: 42 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ edition = "2021"
[dependencies]
ibc = { version = "0.29.0", default-features = false, features = ["serde"] }
displaydoc = { version = "0.2", default-features = false }
tiny-keccak = { version = "1.4" }
tiny-keccak = { version = "2.0.2", default-features = false }

light-client = { git = "https://github.com/datachainlab/lcp", rev = "v0.2.11", default-features = false, features = ["ibc"] }
ethereum-ibc = { git = "https://github.com/datachainlab/ethereum-ibc-rs", rev = "v0.0.18", default-features = false }
ethereum-ibc = { git = "https://github.com/datachainlab/ethereum-ibc-rs", rev = "v0.0.19", default-features = false }

[dev-dependencies]
hex-literal = "0.4.1"
lcp-types = { git = "https://github.com/datachainlab/lcp", rev = "v0.2.11", default-features = false, features = ["std"] }
store = { git = "https://github.com/datachainlab/lcp.git", rev = "v0.2.11", default-features = false }
ethereum-consensus = { git = "https://github.com/datachainlab/ethereum-light-client-rs", rev = "v0.1.7", default-features = false, features = ["prover"] }
ethereum-light-client-verifier = { git = "https://github.com/datachainlab/ethereum-light-client-rs", rev = "v0.1.7", default-features = false, features = ["test-utils"] }
Loading

0 comments on commit 7a40e6a

Please sign in to comment.