Skip to content

Commit

Permalink
fix: correct error message if produceBlockV3 request fails
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Feb 7, 2024
1 parent b6890ad commit 5cd1676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/validator/src/services/block.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export class BlockProposingService {
blindedLocal,
builderBoostFactor,
});
ApiError.assert(res, "Failed to produce block: validator.produceBlockV2");
ApiError.assert(res, "Failed to produce block: validator.produceBlockV3");
const {response} = res;

const debugLogCtx = {
Expand Down

0 comments on commit 5cd1676

Please sign in to comment.