-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(patches): updated local setting patches
- Loading branch information
Showing
2 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
diff --git a/src/config.ts b/src/config.ts | ||
--- a/src/config.ts (revision e0fd622f7257642c37243f3da9303dfaa55c1872) | ||
+++ b/src/config.ts (date 1713205409743) | ||
@@ -131,8 +131,8 @@ | ||
index a633cf3..8c3df19 100644 | ||
--- a/src/config.ts | ||
+++ b/src/config.ts | ||
@@ -135,8 +135,8 @@ export const CONFIG: Config = { | ||
explorerUrl: process.env.EXPLORER_URL || 'http://127.0.0.1:6001', | ||
queryFromExplorer: false, | ||
generateTxTimestamp: true, | ||
- nodelistRefreshInterval: 30000, | ||
- nodelistRefreshInterval: Number(process.env.NODELIST_REFRESH_INTERVAL) || 30000, | ||
- defaultRequestRetry: 5, | ||
+ nodelistRefreshInterval: 5000, | ||
+ defaultRequestRetry: 10, | ||
gasEstimateMethod: 'serviceValidator', //serviceValidator or replayEngine or validator | ||
gasEstimateMethod: process.env.GAS_ESTIMATE_METHOD || 'serviceValidator', //serviceValidator or replayEngine or validator | ||
gasEstimateInvalidationIntervalInMs: 1000 * 60 * 60 * 2, // 2 hours | ||
gasEstimateUseCache: false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters