File tree 1 file changed +3
-0
lines changed
v-next/hardhat/src/internal/builtin-plugins/node
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { HardhatError } from "@ignored/hardhat-vnext-errors";
5
5
import { exists } from "@ignored/hardhat-vnext-utils/fs" ;
6
6
import chalk from "chalk" ;
7
7
8
+ import { resolveConfigurationVariable } from "../../core/configuration-variables.js" ;
8
9
import { resolveForkingConfig } from "../network-manager/config-resolution.js" ;
9
10
10
11
import { JsonRpcServerImplementation } from "./json-rpc/server.js" ;
@@ -79,6 +80,8 @@ const nodeAction: NewTaskActionFunction<NodeActionArguments> = async (
79
80
: undefined ) ,
80
81
} ,
81
82
hre . config . paths . cache ,
83
+ ( strOrConfigVar ) =>
84
+ resolveConfigurationVariable ( hre . hooks , strOrConfigVar ) ,
82
85
) ;
83
86
} else if ( args . forkBlockNumber !== - 1 ) {
84
87
// NOTE: We could make the error more specific here.
You can’t perform that action at this time.
0 commit comments