Skip to content

Commit

Permalink
improved error messages on timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeioris committed Jan 31, 2025
1 parent 54aed16 commit eb883ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testnet/stacks-node/src/nakamoto_node/signer_coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ impl SignerCoordinator {
"rejections_threshold" => self.total_weight.saturating_sub(self.weight_threshold)
);
return Err(NakamotoNodeError::SigningCoordinatorFailure(
"Gave up while trying reaching the threshold".into(),
"Timed out while waiting for signatures".into(),
));
}

Expand Down Expand Up @@ -437,7 +437,7 @@ impl SignerCoordinator {
"rejections_threshold" => self.total_weight.saturating_sub(self.weight_threshold)
);
return Err(NakamotoNodeError::SigningCoordinatorFailure(
"Gave up while trying reaching the threshold".into(),
"Timed out while waiting for signatures".into(),
));
} else {
continue;
Expand Down

0 comments on commit eb883ee

Please sign in to comment.