Skip to content

Commit

Permalink
Merge pull request #36 from signum-network/develop
Browse files Browse the repository at this point in the history
Making a release.
  • Loading branch information
jjos2372 authored Jul 12, 2021
2 parents 781b1b2 + dfc59af commit a426b13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/burst/pool/Constants.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package burst.pool;

public class Constants {
public static final String VERSION = "v2.1.0";
public static final String VERSION = "v2.1.2";
public static final String USER_AGENT = "signum-pool/" + VERSION;
}
1 change: 1 addition & 0 deletions src/main/java/burst/pool/pool/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ private String handleApiCall(IHTTPSession session, Map<String, String> params) {
response.addProperty(Props.nMin.getName(), propertyService.getInt(Props.nMin));
response.addProperty(Props.maxDeadline.getName(), propertyService.getLong(Props.maxDeadline));
response.addProperty(Props.processLag.getName(), propertyService.getInt(Props.processLag));
response.addProperty(Props.graceDeadlines.getName(), propertyService.getInt(Props.graceDeadlines));
response.addProperty(Props.feeRecipient.getName(), propertyService.getSignumAddress(Props.feeRecipient).getID());
response.addProperty(Props.feeRecipient.getName() + "RS", propertyService.getSignumAddress(Props.feeRecipient).getFullAddress());
response.addProperty(Props.poolFeePercentage.getName(), propertyService.getFloat(Props.poolFeePercentage));
Expand Down

0 comments on commit a426b13

Please sign in to comment.