Skip to content
This repository has been archived by the owner on Feb 9, 2019. It is now read-only.

Commit

Permalink
Version 2.2.1
Browse files Browse the repository at this point in the history
final polishing
  • Loading branch information
rico666 committed Jun 6, 2018
1 parent c980e4f commit 9f8968f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>burstcoin</groupId>
<artifactId>burstcoin</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
<name>Burstcoin Reference Software</name>
<url>https://github.com/PoC-Consortium/burstcoin</url>

Expand Down
2 changes: 1 addition & 1 deletion src/brs/Burst.java
Expand Up @@ -60,7 +60,7 @@

public final class Burst {

public static final String VERSION = "2.2.0";
public static final String VERSION = "2.2.1";
public static final String APPLICATION = "BRS";
public static final String LEGACY_APP = "NRS";
public static final String LEGACY_VER = "1.2.9";
Expand Down
2 changes: 1 addition & 1 deletion src/brs/peer/PeerImpl.java
Expand Up @@ -242,7 +242,7 @@ public void blacklist(Exception cause, String description) {
boolean alreadyBlacklisted = isBlacklisted();
blacklist(description); // refresh blacklist expiry
if ( ! alreadyBlacklisted ) {
logger.debug("... because of: " + cause.toString() + cause.getStackTrace().toString(), cause);
logger.debug("... because of: " + cause.toString(), cause);
}
}
}
Expand Down

0 comments on commit 9f8968f

Please sign in to comment.