Skip to content

Commit af823b5

Browse files
Merge pull request #1327 from Chia-Network/gov-creation-sync-retries
fix: adjust retries and delay again to account for governance creation
2 parents d51739f + 1b7f775 commit af823b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/datalayer/syncService.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ const getRootDiff = (storeId, root1, root2) => {
194194
* @param {number} retry - Number of retry attempts.
195195
*/
196196
const getStoreData = async (storeId, callback, onFail, rootHash, retry = 0) => {
197-
const MAX_RETRIES = 18;
198-
const RETRY_DELAY = 20000;
197+
const MAX_RETRIES = 20;
198+
const RETRY_DELAY = 10000;
199199

200200
try {
201201
logger.info(`Getting store data, retry: ${retry}`);

0 commit comments

Comments
 (0)