Update BlueElectrum.ts

This commit is contained in:
Marcos Rodriguez Velez 2024-12-29 15:23:40 -04:00
parent 4094207244
commit 7fd8097e42

View file

@ -67,17 +67,11 @@ type MempoolTransaction = {
fee: number;
};
type Peer =
| {
host: string;
ssl: number;
tcp?: undefined;
}
| {
host: string;
tcp: number;
ssl?: undefined;
};
type Peer = {
host: string;
ssl?: number;
tcp?: number;
};
export const ELECTRUM_HOST = 'electrum_host';
export const ELECTRUM_TCP_PORT = 'electrum_tcp_port';