@fuel-ts/account 0.0.0-rc-2143-20240425151715 → 0.0.0-rc-2045-20240425165416
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 +3 -3
- package/dist/index.global.js.map +1 -1
- package/dist/test-utils/launchNode.d.ts +2 -4
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils.global.js +4 -5
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +1 -2
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +1 -2
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -15
package/dist/test-utils.js
CHANGED
@@ -8064,7 +8064,6 @@ var launchNode = async ({
|
|
8064
8064
|
ip,
|
8065
8065
|
port,
|
8066
8066
|
args = [],
|
8067
|
-
fuelCorePath = void 0,
|
8068
8067
|
useSystemFuelCore = false,
|
8069
8068
|
loggingEnabled = true,
|
8070
8069
|
debugEnabled = false,
|
@@ -8085,7 +8084,7 @@ var launchNode = async ({
|
|
8085
8084
|
const poaInstantFlagValue = getFlagValueFromArgs(args, "--poa-instant");
|
8086
8085
|
const poaInstant = poaInstantFlagValue === "true" || poaInstantFlagValue === void 0;
|
8087
8086
|
const graphQLStartSubstring = "Binding GraphQL provider to";
|
8088
|
-
const binPath =
|
8087
|
+
const binPath = (0, import_cli_utils.findBinPath)("fuels-core", __dirname);
|
8089
8088
|
const command = useSystemFuelCore ? "fuel-core" : binPath;
|
8090
8089
|
const ipToUse = ip || "0.0.0.0";
|
8091
8090
|
const portToUse = port || (await (0, import_portfinder.getPortPromise)({
|