aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-12-03 13:51:58 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-12-04 21:35:41 +0100
commit15d8ff20294d20e6b11ec54450943eb7c5282ae0 (patch)
treeff05c76b04aea748285cdaa799f32b9b5fd11e78 /src/wallet.cpp
parent7f5a1b529b37c81e04ae077612e82f2ab0649bfd (diff)
downloadbitcoin-15d8ff20294d20e6b11ec54450943eb7c5282ae0.tar.xz
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.cpp2
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))