We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004168d commit 6f02899Copy full SHA for 6f02899
src/qt/walletmodel.cpp
@@ -698,3 +698,8 @@ bool WalletModel::hdEnabled() const
698
{
699
return wallet->IsHDEnabled();
700
}
701
+
702
+int WalletModel::getDefaultConfirmTarget() const
703
+{
704
+ return nTxConfirmTarget;
705
+}
src/qt/walletmodel.h
@@ -207,6 +207,8 @@ class WalletModel : public QObject
207
208
bool hdEnabled() const;
209
210
+ int getDefaultConfirmTarget() const;
211
212
private:
213
CWallet *wallet;
214
bool fHaveWatchOnly;
0 commit comments