diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-10-25 01:27:24 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2015-11-05 19:16:29 +0100 |
commit | 513686dd43357b072004e72b089eb997fb75044a (patch) | |
tree | 3812fb781edc77a3a6c587bedbbb10122036f255 /src/qt/walletmodel.cpp | |
parent | 3038eb63e8a674b4818cb5d5e461f1ccf4b2932f (diff) |
[qt] Use maxTxFee instead of 10000000
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r-- | src/qt/walletmodel.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 5c21db8bdf..690ea0811e 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -290,8 +290,10 @@ WalletModel::SendCoinsReturn WalletModel::prepareTransaction(WalletModelTransact return TransactionCreationFailed; } - // reject absurdly high fee > 0.1 bitcoin - if (nFeeRequired > 10000000) + // reject absurdly high fee. (This can never happen because the + // wallet caps the fee at maxTxFee. This merely serves as a + // belt-and-suspenders check) + if (nFeeRequired > maxTxFee) return AbsurdFee; } |