diff --git a/VERSION.properties b/VERSION.properties index cf1bc62..dfa8c7a 100644 --- a/VERSION.properties +++ b/VERSION.properties @@ -1,2 +1,2 @@ -client.version=1.2.19 -server.version=1.2.19 +client.version=1.2.20 +server.version=1.2.20 diff --git a/shine-UI/js/pages/registration-payment-view.js b/shine-UI/js/pages/registration-payment-view.js index 9544e8c..3d779c2 100644 --- a/shine-UI/js/pages/registration-payment-view.js +++ b/shine-UI/js/pages/registration-payment-view.js @@ -107,9 +107,6 @@ export function render({ navigate }) { const deriveUserWalletAddress = async () => { const draftPassword = String(state.registrationDraft.password ?? ''); - if (!draftPassword) { - throw new Error('Не найден пароль регистрации для вычисления wallet.key'); - } const wallet = await deriveWalletFromPassword(draftPassword); const address = String(wallet?.address || '').trim(); if (!address) throw new Error('Не удалось вычислить адрес wallet.key');