diff options
| author | Philip Kaufmann <[email protected]> | 2012-12-03 13:51:58 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-12-04 21:35:41 +0100 |
| commit | 15d8ff20294d20e6b11ec54450943eb7c5282ae0 (patch) | |
| tree | ff05c76b04aea748285cdaa799f32b9b5fd11e78 /src/wallet.cpp | |
| parent | remove unneeded flag from MSG_INFORMATION and fix an indentation (diff) | |
| download | discoin-15d8ff20294d20e6b11ec54450943eb7c5282ae0.tar.xz discoin-15d8ff20294d20e6b11ec54450943eb7c5282ae0.zip | |
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 1a74e7bb4..cedda9e9e 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)) |