Ready for Version 0.2.1 deployment

This commit is contained in:
Manfred Karrer 2015-05-17 15:17:17 +02:00
parent 19bb552224
commit 7a9de65e86
2 changed files with 2 additions and 10 deletions

View File

@ -145,17 +145,9 @@ public final class Node {
return Objects.hashCode(name, ip, port);
}
public String getClientNodeInfo() {
return "Node with: " +
", ip='" + ip + '\'' +
", p2pId='" + p2pId + '\'' +
", port=" + port;
}
@Override
public String toString() {
return "Node with: " +
"Name='" + name + '\'' +
return "Name='" + name + '\'' +
"; IP='" + ip + '\'' +
"; P2P network ID=" + p2pId +
"; port=" + port;

View File

@ -423,8 +423,8 @@ class MainViewModel implements ViewModel {
}
private void stopBlockchainSyncTimeout() {
log.trace("stopBlockchainSyncTimeout");
if (blockchainSyncTimeoutTimer != null) {
log.trace("stopBlockchainSyncTimeout");
blockchainSyncTimeoutTimer.cancel();
blockchainSyncTimeoutTimer = null;
}