diff --git a/app/components/LoadingScreen.js b/app/components/LoadingScreen.js index c9b2a20a..58820101 100644 --- a/app/components/LoadingScreen.js +++ b/app/components/LoadingScreen.js @@ -82,7 +82,7 @@ class LoadingScreen extends Component { // Show the wallet creation screen this.setState({ walletScreen: 1 }); } else { - const result = native.litelib_initialize_existing(true, url); + const result = native.litelib_initialize_existing(false, url); console.log(`Intialization: ${result}`); if (result !== 'OK') { this.setState({ @@ -174,7 +174,7 @@ class LoadingScreen extends Component { createNewWallet = () => { const { url } = this.state; - const result = native.litelib_initialize_new(true, url); + const result = native.litelib_initialize_new(false, url); if (result.startsWith('Error')) { this.setState({ newWalletError: result });