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 3e52aa0 commit 2082113Copy full SHA for 2082113
stacks-signer/src/runloop.rs
@@ -300,8 +300,11 @@ impl RunLoop {
300
// If the stacks-node is still processing the burn block, the /v2/pox endpoint
301
// may return the previous reward cycle. In this case, we should retry.
302
return Err(backoff::Error::transient(ClientError::InvalidResponse(
303
- "Received reward cycle info does not match the current burn block height."
304
- .to_string(),
+ format!("Received reward cycle ({}) does not match the expected reward cycle ({}) for block {}.",
+ info.reward_cycle,
305
+ block_reward_cycle,
306
+ current_burn_block_height
307
+ ),
308
)));
309
}
310
Ok(info)
0 commit comments