Skip to content

Commit

Permalink
fix: made function private
Browse files Browse the repository at this point in the history
  • Loading branch information
Imod7 committed Oct 10, 2023
1 parent 339c927 commit 7ef8ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/accounts/AccountsPoolAssetsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export class AccountsPoolAssetsService extends AbstractService {
/**
* @param keys Extract `assetId`s from an array of storage keys
*/
extractPoolAssetIds(keys: StorageKey<[AssetId]>[]): AssetId[] {
private extractPoolAssetIds(keys: StorageKey<[AssetId]>[]): AssetId[] {
return keys.map(({ args: [assetId] }) => assetId);
}

Expand Down

0 comments on commit 7ef8ab1

Please sign in to comment.