Skip to content

Commit

Permalink
nonce too big value
Browse files Browse the repository at this point in the history
  • Loading branch information
blavenie committed Sep 23, 2016
1 parent e45a89c commit 6a50f6f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class BlockchainBlock implements Serializable {
private static final long serialVersionUID = -5598140972293452669L;

private String version;
private Integer nonce;
private Long nonce;
private Integer number;
private Integer powMin;
private Long time;
Expand Down Expand Up @@ -74,10 +74,10 @@ public String getVersion() {
public void setVersion(String version) {
this.version = version;
}
public Integer getNonce() {
public Long getNonce() {
return nonce;
}
public void setNonce(Integer nonce) {
public void setNonce(Long nonce) {
this.nonce = nonce;
}

Expand Down

0 comments on commit 6a50f6f

Please sign in to comment.