Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Jan 17, 2025
1 parent fc966a2 commit d5b433f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions yarn-project/simulator/src/client/private_execution.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -573,13 +573,12 @@ describe('Private Execution test suite', () => {
l1ToL2MessageIndex,
);

const computeArgs = () =>
encodeArguments(artifact, [
bridgedAmount,
secretForL1ToL2MessageConsumption,
crossChainMsgSender ?? preimage.sender.sender,
l1ToL2MessageIndex,
]);
const computeArgs = () => [
bridgedAmount,
secretForL1ToL2MessageConsumption,
crossChainMsgSender ?? preimage.sender.sender,
l1ToL2MessageIndex,
];

const mockOracles = async (updateHeader = true) => {
const tree = await insertLeaves([preimage.hash()], 'l1ToL2Messages');
Expand Down

0 comments on commit d5b433f

Please sign in to comment.