Merge branch 'master' into natsoni/federation-utxos-expiry

This commit is contained in:
natsoni
2024-03-07 10:27:44 +01:00
committed by GitHub
63 changed files with 1202 additions and 137 deletions

View File

@@ -1,3 +1,4 @@
import { SafeResourceUrl } from '@angular/platform-browser';
import { ILoadingIndicators } from '../services/state.service';
import { Transaction } from './electrs.interface';
import { BlockExtended, DifficultyAdjustment, RbfTree } from './node-api.interface';
@@ -120,4 +121,19 @@ export interface Recommendedfees {
hourFee: number;
minimumFee: number;
economyFee: number;
}
export interface HealthCheckHost {
host: string;
active: boolean;
rtt: number;
latestHeight: number;
socket: boolean;
outOfSync: boolean;
unreachable: boolean;
checked: boolean;
lastChecked: number;
link?: string;
statusPage?: SafeResourceUrl;
flag?: string;
}