We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d971ae commit 8c9cdf1Copy full SHA for 8c9cdf1
1 file changed
launcher/src/composables/validators.js
@@ -177,7 +177,9 @@ export async function useUpdateValidatorStats() {
177
if (key.network === "gnosis") {
178
dateActive.setMilliseconds(dateActive.getMilliseconds() - (latestEpoch - activationEpoch) * 80000);
179
dateExit =
180
- exitEpoch > latestEpoch ? null : dateExit.setMilliseconds(dateExit.getMilliseconds() - (latestEpoch - exitEpoch) * 80000);
+ exitEpoch > latestEpoch
181
+ ? null
182
+ : new Date(dateExit.setMilliseconds(dateExit.getMilliseconds() - (latestEpoch - exitEpoch) * 80000));
183
dateWithdrawable =
184
withdrawableEpoch > latestEpoch
185
? null
0 commit comments