File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ fn raw_transactions__submit_package__modelled() {
388
388
. expect ( "failed to submit package" )
389
389
. into_model ( )
390
390
. expect ( "failed to submit package" ) ;
391
- for ( _ , tx_result) in & res. tx_results {
391
+ for tx_result in res. tx_results . values ( ) {
392
392
assert ! ( tx_result. error. is_some( ) ) ;
393
393
}
394
394
assert ! ( res. replaced_transactions. is_empty( ) ) ;
@@ -416,7 +416,7 @@ fn raw_transactions__submit_package__modelled() {
416
416
. expect ( "failed to submit package" )
417
417
. into_model ( )
418
418
. expect ( "failed to submit package" ) ;
419
- for ( _ , tx_result) in & res. tx_results {
419
+ for tx_result in res. tx_results . values ( ) {
420
420
assert ! ( tx_result. error. is_some( ) ) ;
421
421
}
422
422
assert ! ( res. replaced_transactions. is_empty( ) ) ;
You can’t perform that action at this time.
0 commit comments