Skip to content

Commit b7310f3

Browse files
authored
chore: bump sdk to 0.8.4 (#8)
1 parent 59dd6fe commit b7310f3

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

Cargo.toml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.8.2"
6+
version = "0.8.3"
77
edition = "2024"
88
rust-version = "1.88"
99
authors = ["init4"]
@@ -34,19 +34,20 @@ debug = false
3434
incremental = false
3535

3636
[workspace.dependencies]
37+
signet-blobber = { version = "0.8.0", path = "crates/blobber" }
38+
signet-db = { version = "0.8.0", path = "crates/db" }
3739
signet-node-types = { version = "0.8.0", path = "crates/node-types" }
3840
signet-rpc = { version = "0.8.0", path = "crates/rpc" }
39-
signet-db = { version = "0.8.0", path = "crates/db" }
4041

4142
init4-bin-base = { version = "0.9.0", features = ["alloy"] }
4243

43-
signet-bundle = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.3" }
44-
signet-constants = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.3" }
45-
signet-evm = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.3" }
46-
signet-extract = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.3" }
47-
signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.3" }
48-
signet-types = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.3" }
49-
signet-zenith = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.3" }
44+
signet-bundle = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.4" }
45+
signet-constants = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.4" }
46+
signet-evm = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.4" }
47+
signet-extract = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.4" }
48+
signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.4" }
49+
signet-types = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.4" }
50+
signet-zenith = { git = "https://github.com/init4tech/signet-sdk", tag = "v0.8.4" }
5051

5152

5253
# ajj

crates/rpc/src/ctx.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -619,10 +619,10 @@ where
619619
// need to validate that they are monotonically
620620
// increasing and 0 <= p <= 100
621621
// Note: The types used ensure that the percentiles are never < 0
622-
if let Some(percentiles) = &reward_percentiles {
623-
if percentiles.windows(2).any(|w| w[0] > w[1] || w[0] > 100.) {
624-
return Err(EthApiError::InvalidRewardPercentiles);
625-
}
622+
if let Some(percentiles) = &reward_percentiles
623+
&& percentiles.windows(2).any(|w| w[0] > w[1] || w[0] > 100.)
624+
{
625+
return Err(EthApiError::InvalidRewardPercentiles);
626626
}
627627

628628
// Fetch the headers and ensure we got all of them

0 commit comments

Comments
 (0)