File tree 3 files changed +6
-0
lines changed
crates/op-rbuilder/src/integration
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,8 @@ mod tests {
98
98
#[ tokio:: test]
99
99
#[ cfg( not( feature = "flashblocks" ) ) ]
100
100
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.
101
103
let harness = TestHarnessBuilder :: new ( "integration_test_monitor_transaction_drops" )
102
104
. with_revert_protection ( )
103
105
. build ( )
Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ impl Service for OpRbuilderConfig {
116
116
. arg ( "--datadir" )
117
117
. arg ( self . data_dir . as_ref ( ) . expect ( "data_dir not set" ) )
118
118
. arg ( "--disable-discovery" )
119
+ . arg ( "--color" )
120
+ . arg ( "never" )
119
121
. arg ( "--port" )
120
122
. arg ( self . network_port . expect ( "network_port not set" ) . to_string ( ) )
121
123
. arg ( "--ipcdisable" ) ;
Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ impl Service for OpRethConfig {
80
80
. arg ( "--datadir" )
81
81
. arg ( self . data_dir . as_ref ( ) . expect ( "data_dir not set" ) )
82
82
. arg ( "--disable-discovery" )
83
+ . arg ( "--color" )
84
+ . arg ( "never" )
83
85
. arg ( "--port" )
84
86
. arg ( self . network_port . expect ( "network_port not set" ) . to_string ( ) )
85
87
. arg ( "--ipcdisable" ) ;
You can’t perform that action at this time.
0 commit comments