mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-21 21:19:36 -04:00
Ready for Version 0.2.1 deployment
This commit is contained in:
parent
19bb552224
commit
7a9de65e86
2 changed files with 2 additions and 10 deletions
|
@ -145,17 +145,9 @@ public final class Node {
|
||||||
return Objects.hashCode(name, ip, port);
|
return Objects.hashCode(name, ip, port);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getClientNodeInfo() {
|
|
||||||
return "Node with: " +
|
|
||||||
", ip='" + ip + '\'' +
|
|
||||||
", p2pId='" + p2pId + '\'' +
|
|
||||||
", port=" + port;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Node with: " +
|
return "Name='" + name + '\'' +
|
||||||
"Name='" + name + '\'' +
|
|
||||||
"; IP='" + ip + '\'' +
|
"; IP='" + ip + '\'' +
|
||||||
"; P2P network ID=" + p2pId +
|
"; P2P network ID=" + p2pId +
|
||||||
"; port=" + port;
|
"; port=" + port;
|
||||||
|
|
|
@ -423,8 +423,8 @@ class MainViewModel implements ViewModel {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void stopBlockchainSyncTimeout() {
|
private void stopBlockchainSyncTimeout() {
|
||||||
log.trace("stopBlockchainSyncTimeout");
|
|
||||||
if (blockchainSyncTimeoutTimer != null) {
|
if (blockchainSyncTimeoutTimer != null) {
|
||||||
|
log.trace("stopBlockchainSyncTimeout");
|
||||||
blockchainSyncTimeoutTimer.cancel();
|
blockchainSyncTimeoutTimer.cancel();
|
||||||
blockchainSyncTimeoutTimer = null;
|
blockchainSyncTimeoutTimer = null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue