@fuel-ts/account 0.0.0-rc-2143-20240430082529 → 0.0.0-rc-2209-20240430130352

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.

@@ -3752,9 +3752,8 @@ var _Provider = class {
3752
3752
  static ensureClientVersionIsSupported(nodeInfo) {
3753
3753
  const { isMajorSupported, isMinorSupported, supportedVersion } = (0, import_versions.checkFuelCoreVersionCompatibility)(nodeInfo.nodeVersion);
3754
3754
  if (!isMajorSupported || !isMinorSupported) {
3755
- throw new import_errors14.FuelError(
3756
- import_errors14.FuelError.CODES.UNSUPPORTED_FUEL_CLIENT_VERSION,
3757
- `Fuel client version: ${nodeInfo.nodeVersion}, Supported version: ${supportedVersion}`
3755
+ console.warn(
3756
+ `Unsupported fuel client version: ${nodeInfo.nodeVersion}, Supported version: ${supportedVersion}`
3758
3757
  );
3759
3758
  }
3760
3759
  }
@@ -8297,7 +8296,6 @@ var launchNode = async ({
8297
8296
  ip,
8298
8297
  port,
8299
8298
  args = [],
8300
- fuelCorePath = void 0,
8301
8299
  useSystemFuelCore = false,
8302
8300
  loggingEnabled = true,
8303
8301
  debugEnabled = false,
@@ -8318,7 +8316,7 @@ var launchNode = async ({
8318
8316
  const poaInstantFlagValue = getFlagValueFromArgs(args, "--poa-instant");
8319
8317
  const poaInstant = poaInstantFlagValue === "true" || poaInstantFlagValue === void 0;
8320
8318
  const graphQLStartSubstring = "Binding GraphQL provider to";
8321
- const binPath = fuelCorePath ?? (0, import_cli_utils.findBinPath)("fuels-core", __dirname);
8319
+ const binPath = (0, import_cli_utils.findBinPath)("fuels-core", __dirname);
8322
8320
  const command = useSystemFuelCore ? "fuel-core" : binPath;
8323
8321
  const ipToUse = ip || "0.0.0.0";
8324
8322
  const portToUse = port || (await (0, import_portfinder.getPortPromise)({