Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
fcarreiro committed Oct 11, 2024
1 parent 2569ead commit aac8b37
Showing 1 changed file with 32 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,25 +86,25 @@ describe('Bytecode Serialization', () => {
),
new Call(
/*indirect=*/ 0x01,
/*gasOffset=*/ 0x12345678,
/*addrOffset=*/ 0xa2345678,
/*argsOffset=*/ 0xb2345678,
/*argsSize=*/ 0xc2345678,
/*retOffset=*/ 0xd2345678,
/*retSize=*/ 0xe2345678,
/*successOffset=*/ 0xf2345678,
/*functionSelectorOffset=*/ 0xf3345678,
/*gasOffset=*/ 0x1234,
/*addrOffset=*/ 0xa234,
/*argsOffset=*/ 0xb234,
/*argsSize=*/ 0xc234,
/*retOffset=*/ 0xd234,
/*retSize=*/ 0xe234,
/*successOffset=*/ 0xf234,
/*functionSelectorOffset=*/ 0xf334,
),
new StaticCall(
/*indirect=*/ 0x01,
/*gasOffset=*/ 0x12345678,
/*addrOffset=*/ 0xa2345678,
/*argsOffset=*/ 0xb2345678,
/*argsSize=*/ 0xc2345678,
/*retOffset=*/ 0xd2345678,
/*retSize=*/ 0xe2345678,
/*successOffset=*/ 0xf2345678,
/*functionSelectorOffset=*/ 0xf3345678,
/*gasOffset=*/ 0x1234,
/*addrOffset=*/ 0xa234,
/*argsOffset=*/ 0xb234,
/*argsSize=*/ 0xc234,
/*retOffset=*/ 0xd234,
/*retSize=*/ 0xe234,
/*successOffset=*/ 0xf234,
/*functionSelectorOffset=*/ 0xf334,
),
];
const bytecode = Buffer.concat(instructions.map(i => i.serialize()));
Expand All @@ -130,25 +130,25 @@ describe('Bytecode Serialization', () => {
),
new Call(
/*indirect=*/ 0x01,
/*gasOffset=*/ 0x12345678,
/*addrOffset=*/ 0xa2345678,
/*argsOffset=*/ 0xb2345678,
/*argsSize=*/ 0xc2345678,
/*retOffset=*/ 0xd2345678,
/*retSize=*/ 0xe2345678,
/*successOffset=*/ 0xf2345678,
/*functionSelectorOffset=*/ 0xf3345678,
/*gasOffset=*/ 0x1234,
/*addrOffset=*/ 0xa234,
/*argsOffset=*/ 0xb234,
/*argsSize=*/ 0xc234,
/*retOffset=*/ 0xd234,
/*retSize=*/ 0xe234,
/*successOffset=*/ 0xf234,
/*functionSelectorOffset=*/ 0xf334,
),
new StaticCall(
/*indirect=*/ 0x01,
/*gasOffset=*/ 0x12345678,
/*addrOffset=*/ 0xa2345678,
/*argsOffset=*/ 0xb2345678,
/*argsSize=*/ 0xc2345678,
/*retOffset=*/ 0xd2345678,
/*retSize=*/ 0xe2345678,
/*successOffset=*/ 0xf2345678,
/*functionSelectorOffset=*/ 0xf3345678,
/*gasOffset=*/ 0x1234,
/*addrOffset=*/ 0xa234,
/*argsOffset=*/ 0xb234,
/*argsSize=*/ 0xc234,
/*retOffset=*/ 0xd234,
/*retSize=*/ 0xe234,
/*successOffset=*/ 0xf234,
/*functionSelectorOffset=*/ 0xf334,
),
];

Expand Down

0 comments on commit aac8b37

Please sign in to comment.