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
We were using the same config variable for the slash penalty for a
pruned epoch where the data was and was not made available. This commit
adds a new env var so we can set different values for each.
this.log.info(`EpochPruneWatcher initialized with penalty ${penalty}`);
51
+
this.log.verbose(
52
+
`EpochPruneWatcher initialized with penalties: valid epoch pruned=${penalties.slashPrunePenalty} data withholding=${penalties.slashDataWithholdingPenalty}`,
53
+
);
47
54
}
48
55
49
56
publicstart(){
@@ -161,9 +168,13 @@ export class EpochPruneWatcher extends (EventEmitter as new () => WatcherEmitter
0 commit comments