diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-12-03 13:51:58 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-12-04 21:35:41 +0100 |
commit | 15d8ff20294d20e6b11ec54450943eb7c5282ae0 (patch) | |
tree | ff05c76b04aea748285cdaa799f32b9b5fd11e78 /src/wallet.cpp | |
parent | 7f5a1b529b37c81e04ae077612e82f2ab0649bfd (diff) |
rework ThreadSafeAskFee() / askFee() functions
- remove unused parameter from ThreadSafeAskFee(), which also results in
the removal of an orphan translation-string
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r-- | src/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 1a74e7bb4c..cedda9e9e0 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1310,7 +1310,7 @@ string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, return strError; } - if (fAskFee && !uiInterface.ThreadSafeAskFee(nFeeRequired, _("Sending..."))) + if (fAskFee && !uiInterface.ThreadSafeAskFee(nFeeRequired)) return "ABORTED"; if (!CommitTransaction(wtxNew, reservekey)) |