@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.mjs
CHANGED
@@ -8058,7 +8058,6 @@ var launchNode = async ({
|
|
8058
8058
|
ip,
|
8059
8059
|
port,
|
8060
8060
|
args = [],
|
8061
|
-
fuelCorePath = void 0,
|
8062
8061
|
useSystemFuelCore = false,
|
8063
8062
|
loggingEnabled = true,
|
8064
8063
|
debugEnabled = false,
|
@@ -8079,7 +8078,7 @@ var launchNode = async ({
|
|
8079
8078
|
const poaInstantFlagValue = getFlagValueFromArgs(args, "--poa-instant");
|
8080
8079
|
const poaInstant = poaInstantFlagValue === "true" || poaInstantFlagValue === void 0;
|
8081
8080
|
const graphQLStartSubstring = "Binding GraphQL provider to";
|
8082
|
-
const binPath =
|
8081
|
+
const binPath = findBinPath("fuels-core", __dirname);
|
8083
8082
|
const command = useSystemFuelCore ? "fuel-core" : binPath;
|
8084
8083
|
const ipToUse = ip || "0.0.0.0";
|
8085
8084
|
const portToUse = port || (await getPortPromise({
|