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
chore: Separate config vars for prune penalties (#16694)
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.
Please read [contributing guidelines](CONTRIBUTING.md) and remove this
line.
For audit-related pull requests, please use the [audit PR
template](?expand=1&template=audit.md).
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