Skip to content

Commit e8e7de1

Browse files
kantaiobycode
andauthored
Update stacks-signer/src/client/stacks_client.rs
Co-authored-by: Brice Dobry <[email protected]>
1 parent 0fb886d commit e8e7de1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacks-signer/src/client/stacks_client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ impl StacksClient {
581581
backoff::Error::permanent(e.into())
582582
})?;
583583
if error_data.err_type == GetStackersErrors::NOT_AVAILABLE_ERR_TYPE {
584-
return Err(backoff::Error::permanent(ClientError::NoSortitionOnChain));
584+
Err(backoff::Error::permanent(ClientError::NoSortitionOnChain))
585585
} else {
586586
warn!("Got error response ({status}): {}", error_data.err_msg);
587587
Err(backoff::Error::permanent(ClientError::RequestFailure(

0 commit comments

Comments
 (0)