Skip to content

Commit

Permalink
increase chunk size to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvja committed May 13, 2024
1 parent ad2b0c0 commit 75d956a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyperspace/solana/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2258,7 +2258,7 @@ impl Chain for SolanaClient {
for transactions_iter in all_transactions {
log::info!("Transactions to be sent {:?}", transactions_iter.len());

for transactions in transactions_iter.chunks(1) {
for transactions in transactions_iter.chunks(4) {
let mut tries = 0;

let before_time = Instant::now();
Expand Down

0 comments on commit 75d956a

Please sign in to comment.