From 92d32f4de2682b68e08150301c0fddc910de8e5a Mon Sep 17 00:00:00 2001 From: bholuhacks Date: Sat, 24 Feb 2024 18:07:00 -0500 Subject: [PATCH] chore: spellcheck --- src/hooks/L1/useSimulateProveWithdrawalTransaction.test.ts | 2 +- src/hooks/L1/useWriteProveWithdrawalTransaction.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/L1/useSimulateProveWithdrawalTransaction.test.ts b/src/hooks/L1/useSimulateProveWithdrawalTransaction.test.ts index 699488c..9d53efb 100644 --- a/src/hooks/L1/useSimulateProveWithdrawalTransaction.test.ts +++ b/src/hooks/L1/useSimulateProveWithdrawalTransaction.test.ts @@ -14,6 +14,6 @@ test('useSimulateProveWithdrawalTransaction', async () => { ) // We're only checking that we're able to successfully call the contract. The snapshot - // will continue to change as blocks get procuded, and this check is sufficient. + // will continue to change as blocks get produced, and this check is sufficient. await waitFor(() => expect(result.current.isSuccess).toBeTruthy()) }, { retry: 3 }) diff --git a/src/hooks/L1/useWriteProveWithdrawalTransaction.test.ts b/src/hooks/L1/useWriteProveWithdrawalTransaction.test.ts index a589280..7ee48f8 100644 --- a/src/hooks/L1/useWriteProveWithdrawalTransaction.test.ts +++ b/src/hooks/L1/useWriteProveWithdrawalTransaction.test.ts @@ -21,7 +21,7 @@ test('useWriteProveWithdrawalTransaction', async () => { return Promise.all([ expect(result.current.error).toBeNull(), // We're only checking that we're able to successfully call the contract. The snapshot - // will continue to change as blocks get procuded, and this check is sufficient. + // will continue to change as blocks get produced, and this check is sufficient. expect(result.current.isSuccess).toBeTruthy(), ]) })