-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,10 @@ | ||
import { getRpcClient } from '~~/server/lib/client' | ||
import { consola } from 'consola' | ||
import { getRange } from 'nimiq-validators-trustscore' | ||
|
||
function err(error: any) { | ||
consola.error(error) | ||
return createError(error) | ||
} | ||
|
||
export default defineEventHandler(async () => { | ||
const rpcClient = getRpcClient() | ||
|
||
const range = await getRange(rpcClient) | ||
if (!range) | ||
return err('Could not get range') | ||
|
||
const missingEpochs = await findMissingEpochs(range) | ||
return missingEpochs | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters