diff --git a/Cargo.lock b/Cargo.lock index 8733d5c..0ccd57e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "eth-sparse-mpt" version = "0.1.0" -source = "git+https://github.com/flashbots/rbuilder.git?rev=171d8fcb2de834b6d46463979f8643756c599e86#171d8fcb2de834b6d46463979f8643756c599e86" +source = "git+https://github.com/flashbots/rbuilder.git?rev=93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94#93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94" dependencies = [ "alloy-primitives 0.8.14", "alloy-rlp", @@ -5703,7 +5703,7 @@ dependencies = [ [[package]] name = "metrics_macros" version = "0.1.0" -source = "git+https://github.com/flashbots/rbuilder.git?rev=171d8fcb2de834b6d46463979f8643756c599e86#171d8fcb2de834b6d46463979f8643756c599e86" +source = "git+https://github.com/flashbots/rbuilder.git?rev=93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94#93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94" dependencies = [ "proc-macro2", "quote", @@ -7581,7 +7581,7 @@ dependencies = [ [[package]] name = "rbuilder" version = "0.1.0" -source = "git+https://github.com/flashbots/rbuilder.git?rev=171d8fcb2de834b6d46463979f8643756c599e86#171d8fcb2de834b6d46463979f8643756c599e86" +source = "git+https://github.com/flashbots/rbuilder.git?rev=93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94#93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94" dependencies = [ "ahash", "alloy-chains", @@ -12136,7 +12136,7 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test_utils" version = "0.1.0" -source = "git+https://github.com/flashbots/rbuilder.git?rev=171d8fcb2de834b6d46463979f8643756c599e86#171d8fcb2de834b6d46463979f8643756c599e86" +source = "git+https://github.com/flashbots/rbuilder.git?rev=93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94#93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index e13a59b..66aba5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,11 +56,12 @@ http = "0.2.9" hyper = "0.14" futures-util = "0.3" - -metrics_macros = { git = "https://github.com/flashbots/rbuilder.git", rev = "171d8fcb2de834b6d46463979f8643756c599e86"} +# Dependency to branch. Good dep pending. +metrics_macros = { git = "https://github.com/flashbots/rbuilder.git", rev = "93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94"} #rbuilder = {path="./../rbuilder/crates/rbuilder"} -rbuilder = { git = "https://github.com/flashbots/rbuilder.git", rev = "171d8fcb2de834b6d46463979f8643756c599e86"} +# Dependency to branch. Good dep pending. +rbuilder = { git = "https://github.com/flashbots/rbuilder.git", rev = "93dc7e8c2bb5912b1ed8660b68edbfef47a7fb94"} [build-dependencies] built = { version = "0.7.1", features = ["git2", "chrono"] } diff --git a/src/flashbots_config.rs b/src/flashbots_config.rs index 8279506..54b74ab 100644 --- a/src/flashbots_config.rs +++ b/src/flashbots_config.rs @@ -157,11 +157,7 @@ impl LiveBuilderConfig for FlashbotsConfig { })?; res = res.with_extra_rpc(module); let root_hash_config = self.base_config.live_root_hash_config()?; - let builders = create_builders( - self.live_builders()?, - root_hash_config, - self.base_config.sbundle_mergeabe_signers(), - ); + let builders = create_builders(self.live_builders()?, root_hash_config); res = res.with_builders(builders); Ok(res) }