diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-10-21 10:24:03 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-10-28 10:44:30 +0200 |
commit | 6f0289967fa12afa4bc3299f433bb496a8e7c229 (patch) | |
tree | d99736043cb00c0d17f139d867929b95f40bb9a0 /src/qt/walletmodel.cpp | |
parent | 004168dcb75750ea3f30e1349e4802c20bf4b860 (diff) |
[Qt] Hide nTxConfirmTarget behind WalletModel
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r-- | src/qt/walletmodel.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 305cb4fefa..079b8d3a7b 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -698,3 +698,8 @@ bool WalletModel::hdEnabled() const { return wallet->IsHDEnabled(); } + +int WalletModel::getDefaultConfirmTarget() const +{ + return nTxConfirmTarget; +} |