1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

unknown account fix

This commit is contained in:
Jernej Pregelj 2019-02-13 14:21:47 +01:00
parent a249302a42
commit 006d292a91

View File

@ -70,12 +70,19 @@ class App extends Component<{}, AppState> {
} else {
if (accounts.length === 0 && window.ethereum) {
await window.ethereum.enable()
this.setState({
isLogged: true,
isWeb3: true,
account: accounts[0],
web3
})
const newAccounts = await web3.eth.getAccounts()
if (accounts.length > 0) {
this.setState({
isLogged: true,
isWeb3: true,
account: newAccounts[0],
web3
})
} else {
// failed to unlock
}
} else {
// no unlock procedure
}
}
} catch (e) {