mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-13 19:16:52 +01:00
Update BlueElectrum.ts
This commit is contained in:
parent
4094207244
commit
7fd8097e42
1 changed files with 5 additions and 11 deletions
|
@ -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';
|
||||
|
|
Loading…
Add table
Reference in a new issue