@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.mjs
CHANGED
@@ -8291,6 +8291,7 @@ var launchNode = async ({
|
|
8291
8291
|
ip,
|
8292
8292
|
port,
|
8293
8293
|
args = [],
|
8294
|
+
fuelCorePath = void 0,
|
8294
8295
|
useSystemFuelCore = false,
|
8295
8296
|
loggingEnabled = true,
|
8296
8297
|
debugEnabled = false,
|
@@ -8311,7 +8312,7 @@ var launchNode = async ({
|
|
8311
8312
|
const poaInstantFlagValue = getFlagValueFromArgs(args, "--poa-instant");
|
8312
8313
|
const poaInstant = poaInstantFlagValue === "true" || poaInstantFlagValue === void 0;
|
8313
8314
|
const graphQLStartSubstring = "Binding GraphQL provider to";
|
8314
|
-
const binPath = findBinPath("fuels-core", __dirname);
|
8315
|
+
const binPath = fuelCorePath ?? findBinPath("fuels-core", __dirname);
|
8315
8316
|
const command = useSystemFuelCore ? "fuel-core" : binPath;
|
8316
8317
|
const ipToUse = ip || "0.0.0.0";
|
8317
8318
|
const portToUse = port || (await getPortPromise({
|