We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 968e82d commit 2cdfe4fCopy full SHA for 2cdfe4f
test-integration/test-cloning/tests/01_program-deploy.rs
@@ -183,7 +183,7 @@ async fn test_clone_mini_v4_loader_program_and_upgrade() {
183
loop {
184
ctx.wait_for_delta_slot_ephem(5).unwrap();
185
186
- let bump = (remaining_retries + 1).saturating_sub(MAX_RETRIES);
+ let bump = MAX_RETRIES.saturating_sub(remaining_retries) + 1;
187
let msg = format!("Hola Mundo {bump}");
188
let ix = sdk.log_msg_instruction(&payer.pubkey(), &msg);
189
let (sig, found) = ctx
0 commit comments