Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Wozacosta committed Jan 2, 2025
1 parent 2645781 commit c1780bf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class BitcoinLikeExplorer implements IExplorer {
const { data } = await network({
method: "GET",
url: `${this.baseUrl}/address/${address.address}/txs`,
params: {verbosity: 'Minimal', ...params},
params: { verbosity: "Minimal", ...params },
});
const txs = data.data;
const nextPageToken = data.token;
Expand All @@ -97,7 +97,7 @@ class BitcoinLikeExplorer implements IExplorer {
const { data } = await network({
method: "GET",
url: `${this.baseUrl}/address/${address.address}/txs/pending`,
params: {verbosity: 'Minimal', ...params},
params: { verbosity: "Minimal", ...params },
});
return data;
}
Expand Down

0 comments on commit c1780bf

Please sign in to comment.