mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Add getId method
Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
parent
1b0bd5f9c6
commit
6f4d69d6f4
@ -161,5 +161,11 @@ public class BtcNodes {
|
||||
", port='" + port + '\'' +
|
||||
", operator='" + operator;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
String address = this.address == null ? "" : this.address + ", ";
|
||||
String onionAddress = this.onionAddress == null ? "" : this.onionAddress;
|
||||
return operator + ": [" + address + onionAddress + "]";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user