Skip to content

Commit eb883ee

Browse files
committed
improved error messages on timeout
1 parent 54aed16 commit eb883ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testnet/stacks-node/src/nakamoto_node/signer_coordinator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ impl SignerCoordinator {
380380
"rejections_threshold" => self.total_weight.saturating_sub(self.weight_threshold)
381381
);
382382
return Err(NakamotoNodeError::SigningCoordinatorFailure(
383-
"Gave up while trying reaching the threshold".into(),
383+
"Timed out while waiting for signatures".into(),
384384
));
385385
}
386386

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

0 commit comments

Comments
 (0)