We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e724bf1 commit cc224f0Copy full SHA for cc224f0
packages/transaction-controller/src/utils/validation.test.ts
@@ -575,7 +575,7 @@ describe('validation', () => {
575
},
576
);
577
578
- it('throws if yParity is not 0x or 0x1', () => {
+ it('throws if yParity is not 0x0 or 0x1', () => {
579
expect(() =>
580
validateTxParams({
581
authorizationList: [
@@ -590,7 +590,7 @@ describe('validation', () => {
590
}),
591
).toThrow(
592
rpcErrors.invalidParams(
593
- `Invalid transaction params: yParity must be '0x' or '0x1'. got: 0x2`,
+ `Invalid transaction params: yParity must be '0x0' or '0x1'. got: 0x2`,
594
),
595
596
});
0 commit comments