You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: stacks-signer/src/v0/signer.rs
+38-4Lines changed: 38 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1426,10 +1426,28 @@ impl Signer {
1426
1426
if total_reject_weight.saturating_add(min_weight) <= total_weight {
1427
1427
// Not enough rejection signatures to make a decision
1428
1428
let reject_threshold = total_weight.saturating_sub(min_weight).saturating_add(1);
1429
-
info!("{self}: Received rejection for block {block_hash}, but have not reached rejection threshold yet (have {total_reject_weight}, need at least {min_weight}/{reject_threshold})");
info!("{self}: Received rejection for block {block_hash} and have reached the rejection threshold with {total_reject_weight}/{total_weight} rejections");
1441
+
info!("{self}: Received block rejection and have reached the rejection threshold";
warn!("{self}: Failed to mark block as globally rejected: {e:?}",);
1435
1453
}
@@ -1546,10 +1564,26 @@ impl Signer {
1546
1564
});
1547
1565
1548
1566
if min_weight > signature_weight {
1549
-
info!("{self}: Received block acceptance for block {block_hash}, but have not reached threshold yet (have {signature_weight}, need at least {min_weight}/{total_weight})");
0 commit comments