Change @app/interfaces to new @interfaces path alias
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import '@angular/localize/init';
|
||||
import { ScriptInfo } from '@app/shared/script.utils';
|
||||
import { Vin, Vout } from '@app/interfaces/electrs.interface';
|
||||
import { Vin, Vout } from '@interfaces/electrs.interface';
|
||||
import { BECH32_CHARS_LW, BASE58_CHARS, HEX_CHARS } from '@app/shared/regex.utils';
|
||||
|
||||
export type AddressType = 'fee'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { MempoolBlockDelta, MempoolBlockDeltaCompressed, MempoolDeltaChange, TransactionCompressed } from "../interfaces/websocket.interface";
|
||||
import { TransactionStripped } from "@app/interfaces/node-api.interface";
|
||||
import { TransactionStripped } from "@interfaces/node-api.interface";
|
||||
import { AmountShortenerPipe } from "@app/shared/pipes/amount-shortener.pipe";
|
||||
const amountShortenerPipe = new AmountShortenerPipe();
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ import { Router, ActivatedRoute } from '@angular/router';
|
||||
import { Observable, merge, of, Subject, Subscription } from 'rxjs';
|
||||
import { tap, takeUntil } from 'rxjs/operators';
|
||||
import { Env, StateService } from '@app/services/state.service';
|
||||
import { IBackendInfo } from '@app/interfaces/websocket.interface';
|
||||
import { IBackendInfo } from '@interfaces/websocket.interface';
|
||||
import { LanguageService } from '@app/services/language.service';
|
||||
import { NavigationService } from '@app/services/navigation.service';
|
||||
import { StorageService } from '@app/services/storage.service';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Transaction } from '@app/interfaces/electrs.interface';
|
||||
import { Transaction } from '@interfaces/electrs.interface';
|
||||
|
||||
export const U128_MAX_BIGINT = 0xffff_ffff_ffff_ffff_ffff_ffff_ffff_ffffn;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { TransactionFlags } from './filters.utils';
|
||||
import { getVarIntLength, opcodes, parseMultisigScript, isPoint } from './script.utils';
|
||||
import { Transaction } from '@app/interfaces/electrs.interface';
|
||||
import { CpfpInfo, RbfInfo, TransactionStripped } from '@app/interfaces/node-api.interface';
|
||||
import { Transaction } from '@interfaces/electrs.interface';
|
||||
import { CpfpInfo, RbfInfo, TransactionStripped } from '@interfaces/node-api.interface';
|
||||
import { StateService } from '@app/services/state.service';
|
||||
|
||||
// Bitcoin Core default policy settings
|
||||
|
||||
Reference in New Issue
Block a user