[Qt] add HD enabled/disabled icon to the status bar

This commit is contained in:
Jonas Schnelli
2016-08-17 14:09:47 +02:00
parent 1030fa718c
commit 914154f0cc
15 changed files with 107 additions and 18 deletions

View File

@@ -683,3 +683,8 @@ bool WalletModel::abandonTransaction(uint256 hash) const
LOCK2(cs_main, wallet->cs_wallet);
return wallet->AbandonTransaction(hash);
}
bool WalletModel::hdEnabled() const
{
return wallet->IsHDEnabled();
}