Skip to content

Commit

Permalink
fix: fixed fetchTransactions calling fetchUTXos instead
Browse files Browse the repository at this point in the history
  • Loading branch information
0x31 committed Sep 25, 2020
1 parent 72e0304 commit e09da7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/handlers/BCH/BCHHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class BCHHandler implements Handler {
? options.confirmations
: 0;

const endpoints = _apiFallbacks.fetchUTXOs(
const endpoints = _apiFallbacks.fetchTransactions(
testnet,
address,
confirmations
Expand Down
2 changes: 1 addition & 1 deletion src/handlers/BTC/BTCHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class BTCHandler implements Handler {
? options.confirmations
: 0;

const endpoints = _apiFallbacks.fetchUTXOs(
const endpoints = _apiFallbacks.fetchTransactions(
testnet,
options.address,
confirmations
Expand Down
2 changes: 1 addition & 1 deletion src/handlers/ZEC/ZECHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ export class ZECHandler implements Handler {
? options.confirmations
: 0;

const endpoints = _apiFallbacks.fetchUTXOs(
const endpoints = _apiFallbacks.fetchTransactions(
testnet,
options.address,
confirmations
Expand Down

0 comments on commit e09da7e

Please sign in to comment.