Skip to content

Commit c7ed725

Browse files
committed
fixup! feat: add stake pools service
1 parent 9bb2ac4 commit c7ed725

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cardano/src/wallet/lib/stakePoolService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ export const initStakePoolService = (props: StakePoolServiceProps): StakePoolPro
267267
*
268268
* This function is the one called to recover from errors or to refresh the cached data as well. Since the entire fetching process
269269
* takes between 30" and 1', in such cases it can't be called synchronously, that would mean to make the extension to hang for a long time.
270-
* In such cases must be called in a fire and forget way (i.e. in background) using the form `fetchData().catch(console.error)` to both
270+
* In such cases it must be called in a fire and forget way (i.e. in background) using the form `fetchData().catch(console.error)` to both
271271
* log the error and to avoid unhandled rejections. This lets the `StakePoolProvider` methods to work even if with the expired cache.
272272
*/
273273
const fetchData = async (): Promise<StakePoolCachedData> => {

0 commit comments

Comments
 (0)