aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2012-12-05 23:30:06 -0800
committerWladimir J. van der Laan <[email protected]>2012-12-05 23:30:06 -0800
commit25fd38090a96fbfc755fb2e3058eafd828e84573 (patch)
tree3967a0f95373515562f2ddae28b5ae341d1a8f59 /src/qt/walletmodel.cpp
parentMerge pull request #2056 from sipa/fix_2052 (diff)
parentrework ThreadSafeAskFee() / askFee() functions (diff)
downloaddiscoin-25fd38090a96fbfc755fb2e3058eafd828e84573.tar.xz
discoin-25fd38090a96fbfc755fb2e3058eafd828e84573.zip
Merge pull request #2066 from Diapolo/small_uiint_changes
UI interface changes
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r--src/qt/walletmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp
index 3568616cd..9d5a2c04f 100644
--- a/src/qt/walletmodel.cpp
+++ b/src/qt/walletmodel.cpp
@@ -189,7 +189,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList<SendCoinsRecipie
}
return TransactionCreationFailed;
}
- if(!uiInterface.ThreadSafeAskFee(nFeeRequired, tr("Sending...").toStdString()))
+ if(!uiInterface.ThreadSafeAskFee(nFeeRequired))
{
return Aborted;
}