Skip to content

Commit 4735cef

Browse files
committed
build: upgrade to EDR ??
1 parent 739d593 commit 4735cef

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/hardhat-core/src/internal/hardhat-network/provider/provider.ts

+1
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ export class EdrProviderWrapper
255255
}),
256256
cacheDir: config.forkCachePath,
257257
coinbase: Buffer.from(coinbase.slice(2), "hex"),
258+
enableRip7212: false,
258259
fork,
259260
hardfork: ethereumsjsHardforkToEdrSpecId(hardforkName),
260261
genesisAccounts: config.genesisAccounts.map((account) => {

packages/hardhat-core/src/internal/hardhat-network/provider/vm/exit.ts

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export class Exit {
2424
case SuccessReason.Stop:
2525
case SuccessReason.Return:
2626
case SuccessReason.SelfDestruct:
27+
case SuccessReason.EofReturnContract:
2728
return new Exit(ExitCode.SUCCESS);
2829
}
2930

0 commit comments

Comments
 (0)