File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -236,14 +236,17 @@ impl SubmitTask {
236
236
self . config . clone ( ) ,
237
237
self . constants ,
238
238
) ;
239
- let bumpable =
240
- match prep. prep_transaction ( & sim_result. env . prev_header ) . instrument ( span. clone ( ) ) . await {
241
- Ok ( bumpable) => bumpable,
242
- Err ( error) => {
243
- error ! ( %error, "failed to prepare transaction for submission" ) ;
244
- continue ;
245
- }
246
- } ;
239
+ let bumpable = match prep
240
+ . prep_transaction ( & sim_result. env . prev_header )
241
+ . instrument ( span. clone ( ) )
242
+ . await
243
+ {
244
+ Ok ( bumpable) => bumpable,
245
+ Err ( error) => {
246
+ error ! ( %error, "failed to prepare transaction for submission" ) ;
247
+ continue ;
248
+ }
249
+ } ;
247
250
248
251
// Simulate the transaction to check for reverts
249
252
if let Err ( error) = self . sim_with_call ( bumpable. req ( ) ) . instrument ( span. clone ( ) ) . await {
You can’t perform that action at this time.
0 commit comments