We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c943bb commit cb18e49Copy full SHA for cb18e49
packages/hardhat-core/src/internal/hardhat-network/provider/provider.ts
@@ -354,7 +354,7 @@ export class EdrProviderWrapper
354
const responseObject: Response = await this._provider.handleRequest(
355
stringifiedArgs
356
);
357
- const response = JSON.parse(responseObject.json);
+ const response = responseObject.data;
358
359
const needsTraces =
360
this._node._vm.evm.events.eventNames().length > 0 ||
packages/hardhat-core/src/internal/hardhat-network/provider/vm/minimal-vm.ts
@@ -82,7 +82,7 @@ export function getMinimalEthereumJsVm(
82
})
83
84
85
86
87
return Buffer.from(response.result.slice(2), "hex");
88
},
0 commit comments