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 0fb886d commit e8e7de1Copy full SHA for e8e7de1
stacks-signer/src/client/stacks_client.rs
@@ -581,7 +581,7 @@ impl StacksClient {
581
backoff::Error::permanent(e.into())
582
})?;
583
if error_data.err_type == GetStackersErrors::NOT_AVAILABLE_ERR_TYPE {
584
- return Err(backoff::Error::permanent(ClientError::NoSortitionOnChain));
+ Err(backoff::Error::permanent(ClientError::NoSortitionOnChain))
585
} else {
586
warn!("Got error response ({status}): {}", error_data.err_msg);
587
Err(backoff::Error::permanent(ClientError::RequestFailure(
0 commit comments