Merge pull request #2401

947e265 Transfer: warn on long Payment ID filled into description field (xiphon)
This commit is contained in:
luigi1111 2019-10-08 15:20:07 -05:00
commit 9207462676
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -56,7 +56,7 @@ Rectangle {
property bool showAdvanced: false
// @TODO: remove after pid removal hardfork
property bool warningLongPidTransfer: false
property bool warningLongPidDescription: false
property bool warningLongPidDescription: descriptionLine.text.match(/^[0-9a-f]{64}$/i)
Clipboard { id: clipboard }
@ -331,6 +331,12 @@ Rectangle {
}
}
MoneroComponents.WarningBox {
text: qsTr("Description field contents match long payment ID format. \
Please don't paste long payment ID into description field, your funds might be lost.") + translationManager.emptyString;
visible: warningLongPidDescription
}
ColumnLayout {
spacing: 15