diff options
| author | MarcoFalke <[email protected]> | 2015-10-25 01:27:24 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2015-11-05 19:16:29 +0100 |
| commit | 513686dd43357b072004e72b089eb997fb75044a (patch) | |
| tree | 3812fb781edc77a3a6c587bedbbb10122036f255 /src/qt/walletmodel.cpp | |
| parent | Merge pull request #6934 (diff) | |
| download | discoin-513686dd43357b072004e72b089eb997fb75044a.tar.xz discoin-513686dd43357b072004e72b089eb997fb75044a.zip | |
[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 5c21db8bd..690ea0811 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; } |