Skip to content

Commit

Permalink
Bump citrea again
Browse files Browse the repository at this point in the history
  • Loading branch information
ercecan committed Dec 20, 2024
1 parent a4407ce commit e4d54ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json", "fm
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "a206eb3690e5a51d3c797fed2a6ed722e36863eb", default-features = false }

# Citrea dependencies
sov-ledger-rpc = { git = "https://github.com/chainwayxyz/citrea", rev = "879a075590250cd26e721f31c4cedf3b28832cb0", default-features = false, features = ["client"] }
sov-rollup-interface = { git = "https://github.com/chainwayxyz/citrea", rev = "879a075590250cd26e721f31c4cedf3b28832cb0" }
sov-ledger-rpc = { git = "https://github.com/chainwayxyz/citrea", rev = "6dbcc54de4df455b23675dd1ee51e05835d877b9", default-features = false, features = ["client"] }
sov-rollup-interface = { git = "https://github.com/chainwayxyz/citrea", rev = "6dbcc54de4df455b23675dd1ee51e05835d877b9" }

[patch.crates-io]
bitcoincore-rpc = { version = "0.18.0", git = "https://github.com/chainwayxyz/rust-bitcoincore-rpc.git", rev = "ede8097" }
4 changes: 2 additions & 2 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use jsonrpsee::{
rpc_params,
};
use reth_primitives::U64;
use sov_ledger_rpc::client::RpcClient;
use sov_ledger_rpc::HexHash;
use sov_ledger_rpc::LedgerRpcClient;
use sov_rollup_interface::rpc::{
SequencerCommitmentResponse, SoftConfirmationResponse, VerifiedProofResponse,
};
Expand Down Expand Up @@ -44,7 +44,7 @@ impl Client {
pub async fn ledger_get_last_scanned_l1_height(&self) -> Result<u64> {
Ok(self
.client
.request("ledger_getLastScannedL1Hieght", rpc_params![])
.request("ledger_getLastScannedL1Height", rpc_params![])
.await?)
}

Expand Down

0 comments on commit e4d54ce

Please sign in to comment.