Skip to content

Commit 5a53e6d

Browse files
committed
test: removed duplicated test
Signed-off-by: Logan Nguyen <logan.nguyen@swirldslabs.com>
1 parent eeea14d commit 5a53e6d

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

packages/server/tests/acceptance/rpc_batch1.spec.ts

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1505,28 +1505,6 @@ describe('@api-batch-1 RPC Server Acceptance Tests', function () {
15051505
);
15061506
});
15071507

1508-
if (!useAsyncTxProcessing) {
1509-
it('should execute "eth_sendRawTransaction" and deploy a contract with more than max transaction fee', async function () {
1510-
const gasPrice = await relay.gasPrice(requestId);
1511-
const transaction = {
1512-
type: 2,
1513-
chainId: Number(CHAIN_ID),
1514-
nonce: await relay.getAccountNonce(accounts[2].address, requestId),
1515-
maxPriorityFeePerGas: gasPrice,
1516-
maxFeePerGas: gasPrice,
1517-
gasLimit: Constants.MAX_TRANSACTION_FEE_THRESHOLD,
1518-
data: '0x' + '00'.repeat(Constants.CONTRACT_CODE_SIZE_LIMIT),
1519-
};
1520-
const signedTx = await accounts[2].wallet.signTransaction(transaction);
1521-
const error = predefined.INTERNAL_ERROR();
1522-
1523-
await Assertions.assertPredefinedRpcError(error, sendRawTransaction, false, relay, [
1524-
signedTx,
1525-
requestDetails,
1526-
]);
1527-
});
1528-
}
1529-
15301508
describe('Prechecks', async function () {
15311509
it('should fail "eth_sendRawTransaction" for transaction with incorrect chain_id', async function () {
15321510
const transaction = {

0 commit comments

Comments
 (0)