@fuel-ts/account 0.94.7 → 0.94.9

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.
@@ -64,7 +64,6 @@ var import_utils2 = require("@fuel-ts/utils");
64
64
  var import_fs = require("fs");
65
65
  var import_os = __toESM(require("os"));
66
66
  var import_path = __toESM(require("path"));
67
- var import_portfinder = require("portfinder");
68
67
 
69
68
  // src/signer/signer.ts
70
69
  var import_address = require("@fuel-ts/address");
@@ -257,12 +256,7 @@ var launchNode = async ({
257
256
  const graphQLStartSubstring = "Binding GraphQL provider to";
258
257
  const command = fuelCorePath || "fuel-core";
259
258
  const ipToUse = ip || "0.0.0.0";
260
- const portToUse = port || (await (0, import_portfinder.getPortPromise)({
261
- port: 4e3,
262
- // tries 4000 first, then 4001, then 4002, etc.
263
- stopPort: 5e3
264
- // don't try ports above 5000
265
- })).toString();
259
+ const portToUse = port || "0";
266
260
  let snapshotDirToUse;
267
261
  const prefix = basePath || import_os.default.tmpdir();
268
262
  const suffix = basePath ? "" : (0, import_crypto2.randomUUID)();