aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2012-03-25 20:47:33 +0200
committerWladimir J. van der Laan <[email protected]>2012-04-04 09:37:25 +0200
commit7cfbe1fee465e82ddbdc8ed17dfcce791bd765f5 (patch)
tree0888d0c52e49ffa0f683bbd927d738971f4a5dbc /src/wallet.cpp
parentsupport RPC stop and encryptwallet with UI (diff)
downloaddiscoin-7cfbe1fee465e82ddbdc8ed17dfcce791bd765f5.tar.xz
discoin-7cfbe1fee465e82ddbdc8ed17dfcce791bd765f5.zip
qtui.h/noui.h interface cleanup
- rename wxMessageBox, remove redundant arguments to noui/qtui calls - also, add flag to force blocking, modal dialog box for disk space warning etc - clarify function naming - no more special MessageBox needed from AppInit2, as window object is created before calling AppInit2
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r--src/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 3bdb4bb56..e444e5f69 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -1219,7 +1219,7 @@ string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew,
return strError;
}
- if (fAskFee && !ThreadSafeAskFee(nFeeRequired, _("Sending..."), NULL))
+ if (fAskFee && !ThreadSafeAskFee(nFeeRequired, _("Sending...")))
return "ABORTED";
if (!CommitTransaction(wtxNew, reservekey))