We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 471312c commit c81645bCopy full SHA for c81645b
solana-transaction-utils/src/sender.rs
@@ -281,7 +281,7 @@ impl<T: Send + Clone + Sync> TransactionSender<T> {
281
*last_valid_block_height < current_height
282
});
283
284
- let unexpired_txns = unexpired.iter().map(|(_, _, tx)| *tx).collect_vec();
+ let unexpired_txns = unexpired.into_iter().map(|(_, _, tx)| tx).collect_vec();
285
286
// Collect failed transactions (likely expired) and handle as expired
287
let unexpired_error_signatures = self
0 commit comments