From aea463490a1716d91f2c52bfc552357cc80026e8 Mon Sep 17 00:00:00 2001 From: umeeSthein Date: Mon, 20 Apr 2026 13:31:08 +0700 Subject: [PATCH] tests: remove duplicate NativeFiatToken blocklist case --- tests/localdev/NativeFiatToken.test.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/localdev/NativeFiatToken.test.ts b/tests/localdev/NativeFiatToken.test.ts index 1de7722..c603157 100644 --- a/tests/localdev/NativeFiatToken.test.ts +++ b/tests/localdev/NativeFiatToken.test.ts @@ -927,17 +927,6 @@ describe('NativeFiatToken', () => { await USDC.attach(operator).write.unBlacklist([predictedAddress]).then(ReceiptVerifier.waitSuccess) }) - it('execution frames blocklist: CREATE from EOA succeeds when created address is blocklisted and no value is transferred', async () => { - const { client, operator, sender } = await clients() - - // Calculate the address that will be created - const nonce = await client.getTransactionCount({ address: sender.account.address }) - const predictedAddress = getCreateAddress({ from: sender.account.address, nonce: BigInt(nonce) }) - - // Blocklist the predicted contract address - await USDC.attach(operator).write.blacklist([predictedAddress]).then(ReceiptVerifier.waitSuccess) - }) - it('execution frames blocklist: CREATE from EOA succeeds when created address is blocklisted and no value is transferred', async () => { const { client, operator, sender } = await clients()