Skip to content

Commit

Permalink
Fix typo in submitPoolSyncCommitteeSignatures
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Jan 17, 2024
1 parent 3e525b0 commit 95fdf09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/beacon-node/src/api/impl/beacon/pool/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export function getBeaconPoolApi({
);

if (errors.length > 1) {
throw Error("Multiple errors on publishAggregateAndProofs\n" + errors.map((e) => e.message).join("\n"));
throw Error("Multiple errors on submitPoolSyncCommitteeSignatures\n" + errors.map((e) => e.message).join("\n"));
} else if (errors.length === 1) {
throw errors[0];
}
Expand Down

0 comments on commit 95fdf09

Please sign in to comment.