We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c80be55 commit 4439320Copy full SHA for 4439320
.changeset/rich-parents-shave.md
@@ -0,0 +1,5 @@
1
+---
2
+"@ignored/edr-optimism": patch
3
4
+
5
+Fixed exception on termination of provider with interval mining enabled
hardhat-tests/test/internal/hardhat-network/stack-traces/test.ts
@@ -297,7 +297,9 @@ function compareStackTraces(
297
const actual = trace[i];
298
const expected = description[i];
299
300
- const actualErrorType = stackTraceEntryTypeToString(actual.type);
+ // TODO this `as any` is a temporary workaround until we replace
301
+ // @ignored/edr-optimism with @nomicfoundation/edr
302
+ const actualErrorType = stackTraceEntryTypeToString(actual.type as any);
303
const expectedErrorType = expected.type;
304
305
if (
0 commit comments