@moneypot/hub 1.13.0 → 1.13.1
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.
- package/dist/src/config.js +1 -1
- package/package.json +1 -1
package/dist/src/config.js
CHANGED
|
@@ -106,7 +106,7 @@ export const HASHCHAINSERVER_URL = getEnvVariable("HASHCHAINSERVER_URL", (value)
|
|
|
106
106
|
return value;
|
|
107
107
|
});
|
|
108
108
|
export const HASHCHAINSERVER_MAX_ITERATIONS = getEnvVariable("HASHCHAINSERVER_MAX_ITERATIONS", (value) => {
|
|
109
|
-
const iterations = Number.parseInt(value, 10) ||
|
|
109
|
+
const iterations = Number.parseInt(value, 10) || 100;
|
|
110
110
|
assert(iterations >= 10, "HASHCHAINSERVER_MAX_ITERATIONS must be >= 10");
|
|
111
111
|
return iterations;
|
|
112
112
|
});
|