Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Commit

Permalink
Merge pull request #6 from SigwoTechnologies/dev
Browse files Browse the repository at this point in the history
Updated message checks and version bump
  • Loading branch information
sigwo committed Mar 16, 2019
2 parents 71d76b0 + e49ea72 commit 72a0efc
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 9 deletions.
Binary file modified classes/nxt/Nxt$Init.class
Binary file not shown.
Binary file modified classes/nxt/Nxt.class
Binary file not shown.
Binary file modified classes/nxt/crypto/AnonymouslyEncryptedData.class
Binary file not shown.
Binary file modified classes/nxt/crypto/EncryptedData.class
Binary file not shown.
Binary file modified classes/nxt/env/DesktopSystemTray.class
Binary file not shown.
Binary file modified classes/nxt/http/GetBlockchainStatus.class
Binary file not shown.
Binary file modified classes/nxt/peer/Peers.class
Binary file not shown.
Binary file modified classes/nxt/util/UPnP.class
Binary file not shown.
2 changes: 1 addition & 1 deletion conf/nxt-default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -614,4 +614,4 @@ nxt.disableSecurityPolicy=false


# NRS version.
nxt.version=1.11.7.0
nxt.version=1.11.7.1
2 changes: 1 addition & 1 deletion html/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<html class="lockscreen">
<head>
<meta charset="UTF-8">
<title data-i18n="app_title">Jupiter v1.11.7.0</title>
<title data-i18n="app_title">Jupiter v1.11.7.1</title>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=yes">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
Expand Down
2 changes: 1 addition & 1 deletion src/java/nxt/Nxt.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

public final class Nxt {

public static final String VERSION = "1.11.7.0";
public static final String VERSION = "1.11.7.1";
public static final String APPLICATION = "JRS";

private static volatile Time time = new Time.EpochTime();
Expand Down
6 changes: 3 additions & 3 deletions src/java/nxt/crypto/AnonymouslyEncryptedData.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public static AnonymouslyEncryptedData encrypt(byte[] plaintext, String secretPh

public static AnonymouslyEncryptedData readEncryptedData(ByteBuffer buffer, int length, int maxLength)
throws NxtException.NotValidException {
if (length > maxLength) {
throw new NxtException.NotValidException("Max encrypted data length exceeded: " + length);
}
// if (length > maxLength) {
// throw new NxtException.NotValidException("Max encrypted data length exceeded: " + length);
// }
byte[] data = new byte[length];
buffer.get(data);
byte[] publicKey = new byte[32];
Expand Down
6 changes: 3 additions & 3 deletions src/java/nxt/crypto/EncryptedData.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ public static EncryptedData readEncryptedData(ByteBuffer buffer, int length, int
if (length == 0) {
return EMPTY_DATA;
}
if (length > maxLength) {
throw new NxtException.NotValidException("Max encrypted data length exceeded: " + length);
}
// if (length > maxLength) {
// throw new NxtException.NotValidException("Max encrypted data length exceeded: " + length);
// }
byte[] data = new byte[length];
buffer.get(data);
byte[] nonce = new byte[32];
Expand Down

0 comments on commit 72a0efc

Please sign in to comment.