Skip to content

Commit

Permalink
Merge pull request #3800 from BitGo/WP-407-change-api-used-for-bitcoi…
Browse files Browse the repository at this point in the history
…n-recovery-from-blockstream-to-blockchair

feat(abstract-utxo): change api used for bitcoin recovery from blocks…
  • Loading branch information
alia-bitgo authored Aug 11, 2023
2 parents f99fe41 + 6da5791 commit 4fdd5d5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/abstract-utxo/src/recovery/RecoveryProvider.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BlockchairApi, BlockstreamApi, AddressInfo, TransactionIO } from '@bitgo/blockapis';
import { BlockchairApi, AddressInfo, TransactionIO } from '@bitgo/blockapis';
import { ApiNotImplementedError } from './baseApi';
import { bitgo } from '@bitgo/utxo-lib';

Expand Down Expand Up @@ -26,7 +26,6 @@ export function forCoin(coinName: string, apiToken?: string): RecoveryProvider<n
switch (coinName) {
case 'btc':
case 'tbtc':
return BlockstreamApi.forCoin(coinName);
case 'bch':
case 'bcha':
case 'bsv':
Expand Down

0 comments on commit 4fdd5d5

Please sign in to comment.