public WalletInfoCallback(CMsgClientWalletInfoUpdate wallet) {
    hasWallet = wallet.getHasWallet();

    currency = ECurrencyCode.f(wallet.getCurrency());
    balance = wallet.getBalance();
  }
示例#2
0
 static {
   for (final ECurrencyCode type : ECurrencyCode.values()) {
     ECurrencyCode.values.put(type.v(), type);
   }
 }