Skip to content

Commit

Permalink
test: remove invalid test
Browse files Browse the repository at this point in the history
  • Loading branch information
Wodann committed Jul 17, 2024
1 parent 07dbacf commit 3b72cc6
Showing 1 changed file with 0 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -532,39 +532,6 @@ describe("Eth module - hardfork dependant tests", function () {
);
assert.deepEqual(tx.accessList, accessList);
});

it("Should accept access lists with null storageKeys", async function () {
const accessList = [
{
address: "0x1234567890123456789012345678901234567890",
storageKeys: null,
},
];
const [sender] = await this.provider.send("eth_accounts");
const txHash = await this.provider.send("eth_sendTransaction", [
{
from: sender,
to: sender,
accessList,
},
]);

const tx = await this.provider.send("eth_getTransactionByHash", [
txHash,
]);

assert.equal(tx.type, numberToRpcQuantity(1));
assert.equal(
tx.chainId,
numberToRpcQuantity(this.common.chainId())
);
assert.deepEqual(tx.accessList, [
{
address: "0x1234567890123456789012345678901234567890",
storageKeys: [],
},
]);
});
});
});

Expand Down

0 comments on commit 3b72cc6

Please sign in to comment.