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 2082113 commit 430d987Copy full SHA for 430d987
stacks-signer/src/runloop.rs
@@ -296,7 +296,7 @@ impl RunLoop {
296
.stacks_client
297
.get_current_reward_cycle_info()
298
.map_err(backoff::Error::transient)?;
299
- if info.reward_cycle != block_reward_cycle {
+ if info.reward_cycle < block_reward_cycle {
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(
0 commit comments