Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 03797be

Browse files
Change function name inheritConfig to deriveConfig
1 parent 7e5fdfb commit 03797be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/lib/console-child.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ global.crypto = {
1414
getRandomValues: require("get-random-values")
1515
};
1616

17-
function inheritConfig() {
17+
function deriveConfig() {
1818
//detect config so we can get the provider and resolver without having to serialize
1919
//and deserialize them
2020
const { network, config, url } = yargs(input[0]).argv;
@@ -24,7 +24,7 @@ function inheritConfig() {
2424

2525
function main() {
2626
const { getCommand, prepareOptions, runCommand } = require("./command-utils");
27-
const config = inheritConfig();
27+
const config = deriveConfig();
2828
const command = getCommand({ inputStrings, options: {}, noAliases: false });
2929
const options = prepareOptions({
3030
command,

0 commit comments

Comments
 (0)