@fuel-ts/account 0.0.0-rc-2152-20240430033208 → 0.0.0-rc-2143-20240430073812
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @fuel-ts/account might be problematic. Click here for more details.
- package/dist/index.global.js.map +1 -1
- package/dist/test-utils/launchNode.d.ts +4 -2
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils.global.js +2 -1
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +2 -1
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +2 -1
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -15
package/dist/test-utils.js
CHANGED
@@ -8297,6 +8297,7 @@ var launchNode = async ({
|
|
8297
8297
|
ip,
|
8298
8298
|
port,
|
8299
8299
|
args = [],
|
8300
|
+
fuelCorePath = void 0,
|
8300
8301
|
useSystemFuelCore = false,
|
8301
8302
|
loggingEnabled = true,
|
8302
8303
|
debugEnabled = false,
|
@@ -8317,7 +8318,7 @@ var launchNode = async ({
|
|
8317
8318
|
const poaInstantFlagValue = getFlagValueFromArgs(args, "--poa-instant");
|
8318
8319
|
const poaInstant = poaInstantFlagValue === "true" || poaInstantFlagValue === void 0;
|
8319
8320
|
const graphQLStartSubstring = "Binding GraphQL provider to";
|
8320
|
-
const binPath = (0, import_cli_utils.findBinPath)("fuels-core", __dirname);
|
8321
|
+
const binPath = fuelCorePath ?? (0, import_cli_utils.findBinPath)("fuels-core", __dirname);
|
8321
8322
|
const command = useSystemFuelCore ? "fuel-core" : binPath;
|
8322
8323
|
const ipToUse = ip || "0.0.0.0";
|
8323
8324
|
const portToUse = port || (await (0, import_portfinder.getPortPromise)({
|