Skip to content

Commit c81645b

Browse files
committed
Fix tx sender hang
1 parent 471312c commit c81645b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solana-transaction-utils/src/sender.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ impl<T: Send + Clone + Sync> TransactionSender<T> {
281281
*last_valid_block_height < current_height
282282
});
283283

284-
let unexpired_txns = unexpired.iter().map(|(_, _, tx)| *tx).collect_vec();
284+
let unexpired_txns = unexpired.into_iter().map(|(_, _, tx)| tx).collect_vec();
285285

286286
// Collect failed transactions (likely expired) and handle as expired
287287
let unexpired_error_signatures = self

0 commit comments

Comments
 (0)