Skip to content

Commit 6f8ef75

Browse files
committed
chore: bump deps
1 parent e5d1b1d commit 6f8ef75

File tree

3 files changed

+20
-18
lines changed

3 files changed

+20
-18
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ signet-db = { version = "0.10", path = "crates/db" }
4040
signet-node-types = { version = "0.10", path = "crates/node-types" }
4141
signet-rpc = { version = "0.10", path = "crates/rpc" }
4242

43-
init4-bin-base = { version = "0.13.0", features = ["alloy"] }
44-
45-
signet-bundle = "0.11.0"
46-
signet-constants = "0.11.0"
47-
signet-evm = "0.11.0"
48-
signet-extract = "0.11.0"
49-
signet-tx-cache = "0.11.0"
50-
signet-types = "0.11.0"
51-
signet-zenith = "0.11.0"
52-
signet-journal = "0.11.0"
43+
init4-bin-base = { version = "0.13.1", features = ["alloy"] }
44+
45+
signet-bundle = "0.11.1"
46+
signet-constants = "0.11.1"
47+
signet-evm = "0.11.1"
48+
signet-extract = "0.11.1"
49+
signet-tx-cache = "0.11.1"
50+
signet-types = "0.11.1"
51+
signet-zenith = "0.11.1"
52+
signet-journal = "0.11.1"
5353

5454
# ajj
5555
ajj = { version = "0.3.4" }

crates/rpc/src/ctx/full.rs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,14 @@ where
185185
where
186186
Tasks: TaskSpawner + Clone + 'static,
187187
{
188-
SignetCtx::new(constants, provider, eth_config.clone(), tx_cache, spawner).map(|signet| Self {
189-
host,
190-
signet,
191-
shared: SharedContext {
192-
tracing_semaphores: Semaphore::new(eth_config.max_tracing_requests).into(),
193-
},
188+
SignetCtx::new(constants, provider, eth_config.clone(), tx_cache, spawner).map(|signet| {
189+
Self {
190+
host,
191+
signet,
192+
shared: SharedContext {
193+
tracing_semaphores: Semaphore::new(eth_config.max_tracing_requests).into(),
194+
},
195+
}
194196
})
195197
}
196198

crates/rpc/src/ctx/signet.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ use reth::{
1818
primitives::{Block, Receipt, Recovered, RecoveredBlock, TransactionSigned},
1919
providers::{
2020
BlockHashReader, BlockIdReader, BlockNumReader, CanonStateSubscriptions, HeaderProvider,
21-
ProviderError, ProviderResult, ReceiptProvider, StateProviderFactory,
22-
TransactionsProvider, providers::BlockchainProvider,
21+
ProviderError, ProviderResult, ReceiptProvider, StateProviderFactory, TransactionsProvider,
22+
providers::BlockchainProvider,
2323
},
2424
revm::{database::StateProviderDatabase, primitives::hardfork::SpecId},
2525
rpc::{

0 commit comments

Comments
 (0)