Skip to content

Commit 6a7252e

Browse files
committed
Partial
1 parent fef7b1e commit 6a7252e

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

crates/op-rbuilder/src/integration/integration_test.rs

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ mod tests {
9898
#[tokio::test]
9999
#[cfg(not(feature = "flashblocks"))]
100100
async fn integration_test_monitor_transaction_drops() -> eyre::Result<()> {
101+
// This test ensures that the transactions that get reverted an not included in the block
102+
// are emitted as a log on the builder.
101103
let harness = TestHarnessBuilder::new("integration_test_monitor_transaction_drops")
102104
.with_revert_protection()
103105
.build()

crates/op-rbuilder/src/integration/op_rbuilder.rs

+2
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ impl Service for OpRbuilderConfig {
116116
.arg("--datadir")
117117
.arg(self.data_dir.as_ref().expect("data_dir not set"))
118118
.arg("--disable-discovery")
119+
.arg("--color")
120+
.arg("never")
119121
.arg("--port")
120122
.arg(self.network_port.expect("network_port not set").to_string())
121123
.arg("--ipcdisable");

crates/op-rbuilder/src/integration/op_reth.rs

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ impl Service for OpRethConfig {
8080
.arg("--datadir")
8181
.arg(self.data_dir.as_ref().expect("data_dir not set"))
8282
.arg("--disable-discovery")
83+
.arg("--color")
84+
.arg("never")
8385
.arg("--port")
8486
.arg(self.network_port.expect("network_port not set").to_string())
8587
.arg("--ipcdisable");

0 commit comments

Comments
 (0)