Skip to content

Commit 92d8e77

Browse files
committed
Bumped alloy to 1.0.27
1 parent 38f2851 commit 92d8e77

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ jsonrpsee = "0.25.1"
111111
parking_lot = "0.12"
112112
metrics = "0.24.0"
113113

114-
alloy-origin = { version = "1.0.23", package = "alloy", features = [
114+
alloy-origin = { version = "1.0.27", package = "alloy", features = [
115115
"k256",
116116
"rpc-types-mev",
117117
] }
118118
alloy-evm = "0.18.2"
119-
alloy-serde = "1.0.23"
119+
alloy-serde = "1.0.27"
120120

121121
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
122122
reth-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# rblib — Rust SDK for Ethereum Block Builders
22

3-
> ⚠️ **Early Alpha Notice**
3+
> [!WARNING]
44
> This library is early alpha software under active and rapid development. Breaking changes are expected, APIs may shift, and stability is not guaranteed. No official support is provided at this stage; however, early adopters are encouraged to open issues for bugs, feedback, or feature requests. Your input will help shape the roadmap.
55
66
[![Sanity Check](https://github.com/flashbots/rblib/actions/workflows/sanity.yaml/badge.svg)](https://github.com/flashbots/rblib/actions/workflows/sanity.yaml)

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
tab_spaces = 2
22
hard_tabs = true
3-
edition = "2021"
3+
edition = "2024"
44
fn_single_line = false
55
format_code_in_doc_comments = true
66
format_strings = true

src/platform/limits.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ impl Limits {
8989
max_blobs_per_tx: self_params
9090
.max_blobs_per_tx
9191
.min(other_params.max_blobs_per_tx),
92+
blob_base_cost: self_params
93+
.blob_base_cost
94+
.min(other_params.blob_base_cost),
9295
}),
9396
_ => self.blob_params.or(other.blob_params),
9497
},

0 commit comments

Comments
 (0)