@fuel-ts/account 0.0.0-rc-2238-20240514214137 → 0.0.0-rc-2143-20240515070051
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 +1 -1
- 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 +2343 -117
- 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
@@ -8458,6 +8458,7 @@ var launchNode = async ({
|
|
8458
8458
|
ip,
|
8459
8459
|
port,
|
8460
8460
|
args = [],
|
8461
|
+
fuelCorePath = void 0,
|
8461
8462
|
useSystemFuelCore = false,
|
8462
8463
|
loggingEnabled = true,
|
8463
8464
|
debugEnabled = false,
|
@@ -8478,7 +8479,7 @@ var launchNode = async ({
|
|
8478
8479
|
const poaInstantFlagValue = getFlagValueFromArgs(args, "--poa-instant");
|
8479
8480
|
const poaInstant = poaInstantFlagValue === "true" || poaInstantFlagValue === void 0;
|
8480
8481
|
const graphQLStartSubstring = "Binding GraphQL provider to";
|
8481
|
-
const binPath = (0, import_cli_utils.findBinPath)("fuels-core", __dirname);
|
8482
|
+
const binPath = fuelCorePath ?? (0, import_cli_utils.findBinPath)("fuels-core", __dirname);
|
8482
8483
|
const command = useSystemFuelCore ? "fuel-core" : binPath;
|
8483
8484
|
const ipToUse = ip || "0.0.0.0";
|
8484
8485
|
const portToUse = port || (await (0, import_portfinder.getPortPromise)({
|