mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
fix restoreHeightEdit is not defined.
This commit is contained in:
parent
9272767e4e
commit
f4e58f1aad
1 changed files with 1 additions and 1 deletions
|
@ -686,7 +686,7 @@ Rectangle {
|
||||||
if(Utils.isNumeric(_restoreHeight)){
|
if(Utils.isNumeric(_restoreHeight)){
|
||||||
_restoreHeight = parseInt(_restoreHeight);
|
_restoreHeight = parseInt(_restoreHeight);
|
||||||
if(_restoreHeight >= 0) {
|
if(_restoreHeight >= 0) {
|
||||||
currentWallet.walletCreationHeight = restoreHeightEdit.text
|
currentWallet.walletCreationHeight = _restoreHeight
|
||||||
// Restore height is saved in .keys file. Set password to trigger rewrite.
|
// Restore height is saved in .keys file. Set password to trigger rewrite.
|
||||||
currentWallet.setPassword(appWindow.walletPassword)
|
currentWallet.setPassword(appWindow.walletPassword)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue