Skip to content

Commit 6b14d1c

Browse files
authored
use correct rblib version (#27)
* use correct rblib version * clippy
1 parent 4d4a7b3 commit 6b14d1c

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jemalloc = ["rblib/jemalloc"]
3434
debug = ["tokio/full", "tokio/tracing", "dep:console-subscriber"]
3535

3636
[dependencies]
37-
rblib = { git = "https://github.com/flashbots/rblib", rev = "c9625fa451b13452cce68ce86580745a6fba8d76" }
37+
rblib = { git = "https://github.com/flashbots/rblib", rev = "989b942d0facdde135f05bf66a376e30ce21ebc7" }
3838

3939
futures = "0.3"
4040
tokio = "1.46"
@@ -74,7 +74,7 @@ reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.2" }
7474
console-subscriber = { version = "0.4", optional = true }
7575

7676
[dev-dependencies]
77-
rblib = { git = "https://github.com/flashbots/rblib", rev = "c9625fa451b13452cce68ce86580745a6fba8d76", features = [
77+
rblib = { git = "https://github.com/flashbots/rblib", rev = "989b942d0facdde135f05bf66a376e30ce21ebc7", features = [
7878
"test-utils",
7979
] }
8080

src/main.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,18 +76,11 @@ fn build_pipeline(
7676
cli_args: &BuilderArgs,
7777
pool: &OrderPool<Flashblocks>,
7878
) -> eyre::Result<Pipeline<Flashblocks>> {
79-
let mut pipeline = if cli_args.flashblocks_args.enabled() {
79+
let pipeline = if cli_args.flashblocks_args.enabled() {
8080
build_flashblocks_pipeline(cli_args, pool)?
8181
} else {
8282
build_classic_pipeline(cli_args, pool)
8383
};
84-
85-
if let Some(ref signer) = cli_args.builder_signer {
86-
let epilogue = BuilderEpilogue::with_signer(signer.clone().into());
87-
let limiter = epilogue.limiter();
88-
pipeline = pipeline.with_epilogue(epilogue).with_limits(limiter);
89-
}
90-
9184
pool.attach_pipeline(&pipeline);
9285

9386
Ok(pipeline)

0 commit comments

Comments
 (0)