Fix dead code warning in Account

This commit is contained in:
catbref 2020-05-01 08:56:49 +01:00
parent df15f81b9f
commit a309f8de9e

View File

@ -251,11 +251,7 @@ public class Account {
if (Account.isFounder(accountData.getFlags()))
return BlockChain.getInstance().getFounderEffectiveMintingLevel();
Integer level = accountData.getLevel();
if (level == null)
return 0;
return level;
return accountData.getLevel();
}
/**