Skip to content

Commit

Permalink
Merge pull request #32 from datachainlab/update-ethereum-ibc
Browse files Browse the repository at this point in the history
Update ethereum-ibc version

Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele authored Dec 24, 2024
2 parents 64ac614 + ef98239 commit f895ffd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ displaydoc = { version = "0.2", default-features = false }
tiny-keccak = { version = "2.0.2", default-features = false }

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

[dev-dependencies]
hex-literal = "0.4.1"
lcp-types = { git = "https://github.com/datachainlab/lcp", rev = "v0.2.12", default-features = false, features = ["std"] }
store = { git = "https://github.com/datachainlab/lcp", rev = "v0.2.12", 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"] }
ethereum-consensus = { git = "https://github.com/datachainlab/ethereum-light-client-rs", rev = "v0.2.0", default-features = false, features = ["prover"] }
ethereum-light-client-verifier = { git = "https://github.com/datachainlab/ethereum-light-client-rs", rev = "v0.2.0", default-features = false, features = ["test-utils"] }
4 changes: 2 additions & 2 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ mod tests {
config::minimal::get_config(),
keccak256("genesis_validators_root"),
U64(1578009600),
Fraction::new(2, 3),
Fraction::new(2, 3).unwrap(),
SystemTime::now()
.duration_since(SystemTime::UNIX_EPOCH)
.unwrap()
Expand Down Expand Up @@ -557,7 +557,7 @@ mod tests {
ibc_commitments_slot: H256(hex!(
"1ee222554989dda120e26ecacf756fe1235cd8d726706b57517715dde4f0c900"
)),
trust_level: Fraction::new(2, 3),
trust_level: Fraction::new(2, 3).unwrap(),
trusting_period: Duration::from_secs(60 * 60 * 27),
max_clock_drift: Duration::from_secs(60),
latest_execution_block_number: 1.into(),
Expand Down

0 comments on commit f895ffd

Please sign in to comment.