From fa7432aa194f1cdf7314925c018c8a6287972f9f Mon Sep 17 00:00:00 2001 From: Daniel Bate Date: Fri, 19 Apr 2024 10:46:14 +0100 Subject: [PATCH 1/2] chore: upgrade forc version in reentrant test --- packages/fuel-gauge/src/reentrant-contract-calls.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/fuel-gauge/src/reentrant-contract-calls.test.ts b/packages/fuel-gauge/src/reentrant-contract-calls.test.ts index 62d9ca27534..39419280911 100644 --- a/packages/fuel-gauge/src/reentrant-contract-calls.test.ts +++ b/packages/fuel-gauge/src/reentrant-contract-calls.test.ts @@ -32,7 +32,7 @@ describe('Reentrant Contract Calls', () => { value, transactionResult: { receipts }, } = await fooContract.functions - .foo({ value: fooContract.id.toB256() }, { value: barContract.id.toB256() }) + .foo({ bits: fooContract.id.toB256() }, { bits: barContract.id.toB256() }) .addContracts([barContract]) .call(); @@ -69,8 +69,8 @@ describe('Reentrant Contract Calls', () => { ).deployContract({ storageSlots: storageTest.storageSlots }); const reentrantCall = fooContract.functions.foo( - { value: fooContract.id.toB256() }, - { value: barContract.id.toB256() } + { bits: fooContract.id.toB256() }, + { bits: barContract.id.toB256() } ); const result = await fooContract From e7c25c4371c4218b1a1ad7f4dc40e01a69a99174 Mon Sep 17 00:00:00 2001 From: Daniel Bate Date: Fri, 19 Apr 2024 10:47:49 +0100 Subject: [PATCH 2/2] chore: changeset --- .changeset/friendly-peaches-change.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .changeset/friendly-peaches-change.md diff --git a/.changeset/friendly-peaches-change.md b/.changeset/friendly-peaches-change.md new file mode 100644 index 00000000000..a845151cc84 --- /dev/null +++ b/.changeset/friendly-peaches-change.md @@ -0,0 +1,2 @@ +--- +---