Merge pull request #3897

2021d61 TxConfirmationDialog: warn high fees (selsta)
This commit is contained in:
luigi1111 2022-04-27 21:55:34 -05:00
commit 2e2ae5c88f
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -338,8 +338,9 @@ Rectangle {
spacing: 16
Text {
color: MoneroComponents.Style.defaultFontColor
font.pixelSize: 15
property bool maliciousTxFee: parseFloat(root.transactionFee) > 0.01
color: maliciousTxFee ? "red" : MoneroComponents.Style.defaultFontColor
font.pixelSize: maliciousTxFee ? 20 : 15
text: {
if (currentWallet) {
if (!root.transactionFee) {
@ -349,7 +350,7 @@ Rectangle {
return qsTr("Calculating fee") + "..." + translationManager.emptyString;
}
} else {
return root.transactionFee + " XMR"
return root.transactionFee + " XMR" + (maliciousTxFee ? " (HIGH FEE)" : "")
}
} else {
return "";