retry more times

This commit is contained in:
MrTuxedo 2023-04-22 20:38:29 -07:00
parent d9de65911b
commit 09e409c62d

View File

@ -53,7 +53,7 @@ const baseGasPricesObservable$ = blockBaseFeePerGasObservable$.pipe(
}; };
}), }),
catchError(err => throwError(() => new Error(err))), catchError(err => throwError(() => new Error(err))),
retry(2) retry({ count: 10, delay: 100, resetOnSuccess: true })
); );
export { baseGasPricesObservable$ }; export { baseGasPricesObservable$ };