@@ -1701,11 +1701,6 @@ describe("Eth module - hardfork dependant tests", function () {
1701
1701
} ) ;
1702
1702
1703
1703
it ( "should allow initcodes larger than the EIP-3860 limit" , async function ( ) {
1704
- if ( process . env . HARDHAT_EXPERIMENTAL_VM_MODE !== "ethereumjs" ) {
1705
- // disabled until we can disable the initcode check in revm
1706
- this . skip ( ) ;
1707
- }
1708
-
1709
1704
const code = "ff" . repeat ( maxInitcodeSize + 100 ) ;
1710
1705
1711
1706
const tx = getTxToDeployBytecode ( code , maxCodeSize ) ;
@@ -1726,11 +1721,6 @@ describe("Eth module - hardfork dependant tests", function () {
1726
1721
} ) ;
1727
1722
1728
1723
it ( "should allow initcodes larger than the EIP-3860 limit from impersonated accounts" , async function ( ) {
1729
- if ( process . env . HARDHAT_EXPERIMENTAL_VM_MODE !== "ethereumjs" ) {
1730
- // disabled until we can disable the initcode check in revm
1731
- this . skip ( ) ;
1732
- }
1733
-
1734
1724
const code = "ff" . repeat ( maxInitcodeSize + 100 ) ;
1735
1725
1736
1726
const impersonatedAddress =
@@ -1770,11 +1760,6 @@ describe("Eth module - hardfork dependant tests", function () {
1770
1760
} ) ;
1771
1761
1772
1762
it ( "should allow initcodes larger than the EIP-3860 limit in raw transactions" , async function ( ) {
1773
- if ( process . env . HARDHAT_EXPERIMENTAL_VM_MODE !== "ethereumjs" ) {
1774
- // disabled until we can disable the initcode check in revm
1775
- this . skip ( ) ;
1776
- }
1777
-
1778
1763
const code = "ff" . repeat ( maxInitcodeSize + 100 ) ;
1779
1764
1780
1765
const txData = getTxToDeployBytecode ( code , maxCodeSize ) ;
0 commit comments