Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
{
"unread": true,
"status": "completed",
"title": "Client successfuly updated",
"title": "Client successfully updated",
"description": "Lodestar consensus client",
"timestamp": 1673384953
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const PodmanInstallation = ({
setDownloadComplete(true);
}
} else {
console.error('recieved empty podman message');
console.error('received empty podman message');
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/renderer/ethers.js
Original file line number Diff line number Diff line change
Expand Up @@ -11911,7 +11911,7 @@ EC.prototype.recoverPubKey = function (msg, signature$1, j, enc) {
var isYOdd = j & 1;
var isSecondKey = j >> 1;
if (r.cmp(this.curve.p.umod(this.curve.n)) >= 0 && isSecondKey)
throw new Error('Unable to find sencond key candinate');
throw new Error('Unable to find sencond key candidate');
if (isSecondKey) r = this.curve.pointFromX(r.add(this.curve.n), isYOdd);
else r = this.curve.pointFromX(r, isYOdd);
var rInv = signature$1.r.invm(n);
Expand Down