aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.cpp
diff options
context:
space:
mode:
authorJonas Schnelli <[email protected]>2015-11-18 14:27:46 +0100
committerJonas Schnelli <[email protected]>2015-11-18 14:28:21 +0100
commit03403d8c0f3b40f04ef9fac8781ac8e19ed304ec (patch)
tree336800fa8312fd613f9529baa8018e611ebc8d50 /src/qt/walletmodel.cpp
parentMerge pull request #7030 (diff)
parent[qt] Use maxTxFee instead of 10000000 (diff)
downloaddiscoin-03403d8c0f3b40f04ef9fac8781ac8e19ed304ec.tar.xz
discoin-03403d8c0f3b40f04ef9fac8781ac8e19ed304ec.zip
Merge pull request #6951
513686d [qt] Use maxTxFee instead of 10000000 (MarcoFalke)
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r--src/qt/walletmodel.cpp6
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;
}