forked from Qortal/qortal
Fixed bug
This commit is contained in:
parent
a75fd14e45
commit
3965f24ab5
@ -13,15 +13,15 @@ import java.util.List;
|
|||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
public class AccountPenaltyStats {
|
public class AccountPenaltyStats {
|
||||||
|
|
||||||
public int totalPenalties;
|
public Integer totalPenalties;
|
||||||
public int maxPenalty;
|
public Integer maxPenalty;
|
||||||
public int minPenalty;
|
public Integer minPenalty;
|
||||||
public String penaltyHash;
|
public String penaltyHash;
|
||||||
|
|
||||||
protected AccountPenaltyStats() {
|
protected AccountPenaltyStats() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public AccountPenaltyStats(int totalPenalties, int maxPenalty, int minPenalty, String penaltyHash) {
|
public AccountPenaltyStats(Integer totalPenalties, Integer maxPenalty, Integer minPenalty, String penaltyHash) {
|
||||||
this.totalPenalties = totalPenalties;
|
this.totalPenalties = totalPenalties;
|
||||||
this.maxPenalty = maxPenalty;
|
this.maxPenalty = maxPenalty;
|
||||||
this.minPenalty = minPenalty;
|
this.minPenalty = minPenalty;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user