Basic view: real wallet's balance

This commit is contained in:
Ilya Kitaev 2016-08-10 15:18:56 +03:00
parent d0a5339289
commit 983317b449
1 changed files with 5 additions and 2 deletions

View File

@ -143,6 +143,8 @@ ApplicationWindow {
console.log("opening wallet at: ", wallet_path);
// TODO: wallet password dialog
wallet = walletManager.openWallet(wallet_path, "", persistentSettings.testnet);
if (wallet.status !== Wallet.Status_Ok) {
console.log("Error opening wallet: ", wallet.errorString);
informationPopup.title = qsTr("Error") + translationManager.emptyString;
@ -164,8 +166,9 @@ ApplicationWindow {
function onWalletUpdate() {
console.log(">>> wallet updated")
leftPanel.unlockedBalanceText = walletManager.displayAmount(wallet.unlockedBalance);
leftPanel.balanceText = walletManager.displayAmount(wallet.balance);
basicPanel.unlockedBalanceText = leftPanel.unlockedBalanceText = walletManager.displayAmount(wallet.unlockedBalance);
basicPanel.balanceText = leftPanel.balanceText = walletManager.displayAmount(wallet.balance);
}
function onWalletRefresh() {