1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-29 23:26:24 +01:00

Merge pull request #2105

45efb41 wizard: allow viewonly wallet restores (mmbyday)
This commit is contained in:
luigi1111 2019-04-23 15:33:33 -05:00
commit ba0f7fc9f6
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -75,6 +75,10 @@ Rectangle {
viewKeyLine.error = !result[1] && viewKeyLineLength != 0
spendKeyLine.error = !result[2] && spendKeyLineLength != 0
// allow valid viewOnly
if (spendKeyLine.text.length === 0)
return (result[0] && result[1])
return (result[0] && result[1] && result[2])
}