fixes to staking gui

This commit is contained in:
janko33bd
2017-09-02 23:36:40 +02:00
parent 0f440a31dc
commit 062eb8ccf7
4 changed files with 14 additions and 15 deletions

View File

@@ -284,9 +284,8 @@ void WalletView::lockWallet()
unsigned long long WalletView::updateWeight()
{
if(!walletModel)
return 0;
return walletModel->updateWeight();
if(walletModel)
return walletModel->updateWeight();
}
void WalletView::usedSendingAddresses()