Skip to content

Commit

Permalink
return fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vsubhuman committed Nov 15, 2024
1 parent 643ac5c commit eb9ba57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ export class RemoteFetcher implements IFetcher {
).then(response => response.data)
.catch((error) => {
if (error.response.status === 404 && error.response.data === 'No outputs found') {
return [ null ];
return null;
}
Logger.error(`${nameof(RemoteFetcher)}::${nameof(this.getUtxoData)} error: ` + stringifyError(error));
throw new GetUtxoDataError();
Expand Down

0 comments on commit eb9ba57

Please sign in to comment.