[Qt] Hide nTxConfirmTarget behind WalletModel
This commit is contained in:
parent
004168dcb7
commit
6f0289967f
2 changed files with 7 additions and 0 deletions
|
@ -698,3 +698,8 @@ bool WalletModel::hdEnabled() const
|
|||
{
|
||||
return wallet->IsHDEnabled();
|
||||
}
|
||||
|
||||
int WalletModel::getDefaultConfirmTarget() const
|
||||
{
|
||||
return nTxConfirmTarget;
|
||||
}
|
||||
|
|
|
@ -207,6 +207,8 @@ public:
|
|||
|
||||
bool hdEnabled() const;
|
||||
|
||||
int getDefaultConfirmTarget() const;
|
||||
|
||||
private:
|
||||
CWallet *wallet;
|
||||
bool fHaveWatchOnly;
|
||||
|
|
Loading…
Reference in a new issue