-The GrapheneAccount class is crasing, now it is fixed
This commit is contained in:
parent
b05cf62daf
commit
a21796d2d0
1 changed files with 10 additions and 3 deletions
|
@ -31,9 +31,16 @@ public class GrapheneAccount extends CryptoNetAccount {
|
|||
}
|
||||
|
||||
public void loadInfo(GrapheneAccountInfo info){
|
||||
this.name = info.getName();
|
||||
this.accountId = info.getAccountId();
|
||||
this.upgradedToLtm = info.getUpgradedToLtm();
|
||||
if(info != null){
|
||||
this.name = info.getName();
|
||||
this.accountId = info.getAccountId();
|
||||
this.upgradedToLtm = info.getUpgradedToLtm();
|
||||
}
|
||||
else{
|
||||
this.name = "";
|
||||
this.accountId = "-1";
|
||||
this.upgradedToLtm = false;
|
||||
}
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
|
|
Loading…
Reference in a new issue