Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmurdoch committed Sep 15, 2023
1 parent aba5c6d commit 75776b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ethereum/ethereum/tests/api/eth/sign.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ describe("api", () => {
]);

assert.strictEqual(
sgn.substring(sgn.length - 2, 2),
sgn.substring(sgn.length - 2),
"1b", // 27 in hex
"eth_sign should produce a v value of 27 or 28"
);
Expand All @@ -68,7 +68,7 @@ describe("api", () => {
let sgn = await provider.send("eth_sign", [accounts[0], msgHex]);

assert.strictEqual(
sgn.substring(sgn.length - 2, 2),
sgn.substring(sgn.length - 2),
"1b", // 27 in hex
"eth_sign should produce a v value of 27 or 28"
);
Expand Down

0 comments on commit 75776b0

Please sign in to comment.