File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
crates/op-rbuilder/src/flashtestations Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,11 @@ pub struct FlashtestationsArgs {
34
34
// Remote url for attestations
35
35
#[ arg(
36
36
long = "flashtestations.quote-provider" ,
37
- env = "FLASHTESTATIONS_QUOTE_PROVIDER"
37
+ env = "FLASHTESTATIONS_QUOTE_PROVIDER" ,
38
+ required_if_eq_all( [
39
+ ( "flashtestations_enabled" , "true" ) ,
40
+ ( "debug" , "false" )
41
+ ] )
38
42
) ]
39
43
pub quote_provider : Option < String > ,
40
44
Original file line number Diff line number Diff line change @@ -561,7 +561,7 @@ impl BuilderTransactions for FlashtestationsBuilderTx {
561
561
let mut builder_txs = Vec :: < BuilderTransactionCtx > :: new ( ) ;
562
562
563
563
if !self . registered . load ( Ordering :: Relaxed ) {
564
- info ! ( target: "flashtestations" , "tee service not registered yet, attempting to add registration tx " ) ;
564
+ info ! ( target: "flashtestations" , "tee service not registered yet, attempting to register " ) ;
565
565
self . set_registered ( state_provider, ctx) ;
566
566
builder_txs. extend ( self . fund_tee_service_tx ( ctx, & mut evm) ?) ;
567
567
let ( register_tx, _) = self . register_tee_service_tx ( ctx, & mut evm) ?;
You can’t perform that action at this time.
0 commit comments