Skip to content

Commit

Permalink
chore: doc and return type
Browse files Browse the repository at this point in the history
Co-authored-by: Nedim Salkić <[email protected]>
  • Loading branch information
danielbate and nedsalk authored Sep 2, 2024
1 parent fef57cb commit 93f5f05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/account/src/providers/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1359,12 +1359,12 @@ Supported fuel-core version: ${supportedVersion}.`
}

/**
* Returns an array of blobIds if they exist on chain, for a given array of blobIds.
* Returns an array of blobIds that exist on chain, for a given array of blobIds.
*
* @param blobIds - blobIds to check.
* @returns - A promise that resolves to an array of blobIds that exist on chain.
*/
async getBlobs(blobIds: string[]): Promise<(string | null)[]> {
async getBlobs(blobIds: string[]): Promise<string[]> {
const res = await this.operations.getBlobs({ blobIds });
const blobs: (string | null)[] = [];

Expand Down

0 comments on commit 93f5f05

Please sign in to comment.