Change @app/interfaces to new @interfaces path alias
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Transaction } from '@app/interfaces/electrs.interface';
|
||||
import { Transaction } from '@interfaces/electrs.interface';
|
||||
|
||||
// Parse the blinders data from a string encoded as a comma separated list, in the following format:
|
||||
// <value_in_satoshis>,<asset_tag_hex>,<amount_blinder_hex>,<asset_blinder_hex>
|
||||
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
retryWhen,
|
||||
delay,
|
||||
} from 'rxjs/operators';
|
||||
import { Transaction, Vout } from '@app/interfaces/electrs.interface';
|
||||
import { Transaction, Vout } from '@interfaces/electrs.interface';
|
||||
import { of, merge, Subscription, Observable, Subject, from } from 'rxjs';
|
||||
import { StateService } from '@app/services/state.service';
|
||||
import { CacheService } from '@app/services/cache.service';
|
||||
@@ -16,7 +16,7 @@ import { OpenGraphService } from '@app/services/opengraph.service';
|
||||
import { ApiService } from '@app/services/api.service';
|
||||
import { SeoService } from '@app/services/seo.service';
|
||||
import { seoDescriptionNetwork } from '@app/shared/common.utils';
|
||||
import { CpfpInfo } from '@app/interfaces/node-api.interface';
|
||||
import { CpfpInfo } from '@interfaces/node-api.interface';
|
||||
import { LiquidUnblinding } from './liquid-ublinding';
|
||||
|
||||
@Component({
|
||||
|
||||
@@ -15,7 +15,7 @@ import {
|
||||
repeat,
|
||||
take
|
||||
} from 'rxjs/operators';
|
||||
import { Transaction } from '@app/interfaces/electrs.interface';
|
||||
import { Transaction } from '@interfaces/electrs.interface';
|
||||
import { of, merge, Subscription, Observable, Subject, from, throwError, combineLatest, BehaviorSubject } from 'rxjs';
|
||||
import { StateService } from '@app/services/state.service';
|
||||
import { CacheService } from '@app/services/cache.service';
|
||||
@@ -27,7 +27,7 @@ import { StorageService } from '@app/services/storage.service';
|
||||
import { seoDescriptionNetwork } from '@app/shared/common.utils';
|
||||
import { getTransactionFlags, getUnacceleratedFeeRate } from '@app/shared/transaction.utils';
|
||||
import { Filter, TransactionFlags, toFilters } from '@app/shared/filters.utils';
|
||||
import { BlockExtended, CpfpInfo, RbfTree, MempoolPosition, DifficultyAdjustment, Acceleration, AccelerationPosition } from '@app/interfaces/node-api.interface';
|
||||
import { BlockExtended, CpfpInfo, RbfTree, MempoolPosition, DifficultyAdjustment, Acceleration, AccelerationPosition } from '@interfaces/node-api.interface';
|
||||
import { LiquidUnblinding } from '@components/transaction/liquid-ublinding';
|
||||
import { RelativeUrlPipe } from '@app/shared/pipes/relative-url/relative-url.pipe';
|
||||
import { PriceService } from '@app/services/price.service';
|
||||
|
||||
Reference in New Issue
Block a user