Skip to content

Commit

Permalink
fix beaconapi error
Browse files Browse the repository at this point in the history
  • Loading branch information
Marketen committed Oct 1, 2024
1 parent 11ce422 commit aa46156
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export async function fetchAndInsertPerformanceCron({
function getValidatorPerformanceError(e: Error): ValidatorPerformanceError {
if (e instanceof BeaconchainApiError)
return {
code: ValidatorPerformanceErrorCode.EXECUTION_OFFLINE,
code: ValidatorPerformanceErrorCode.BEACONCHAIN_API_ERROR,
message: e.message
};
if (e instanceof BrainDbError)
Expand Down

0 comments on commit aa46156

Please sign in to comment.