From f80707d30755df139c38a3bc1a6647f7664eef7b Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Thu, 26 Jun 2025 17:48:48 +1000 Subject: [PATCH] remove --export from hardhat node start --- tests/integration/hardhatprocess.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/hardhatprocess.nim b/tests/integration/hardhatprocess.nim index b00b0400..b768c2e9 100644 --- a/tests/integration/hardhatprocess.nim +++ b/tests/integration/hardhatprocess.nim @@ -77,7 +77,7 @@ method start*( raiseAssert "failed build path to hardhat executable: " & parent.msg let poptions = node.processOptions + {AsyncProcessOption.StdErrToStdOut} - let args = @["node", "--export", "deployment-localhost.json"].concat(node.arguments) + let args = @["node"].concat(node.arguments) trace "starting node", args, executable, workingDir = node.workingDir try: