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:
parent
a249302a42
commit
006d292a91
@ -70,12 +70,19 @@ class App extends Component<{}, AppState> {
|
|||||||
} else {
|
} else {
|
||||||
if (accounts.length === 0 && window.ethereum) {
|
if (accounts.length === 0 && window.ethereum) {
|
||||||
await window.ethereum.enable()
|
await window.ethereum.enable()
|
||||||
|
const newAccounts = await web3.eth.getAccounts()
|
||||||
|
if (accounts.length > 0) {
|
||||||
this.setState({
|
this.setState({
|
||||||
isLogged: true,
|
isLogged: true,
|
||||||
isWeb3: true,
|
isWeb3: true,
|
||||||
account: accounts[0],
|
account: newAccounts[0],
|
||||||
web3
|
web3
|
||||||
})
|
})
|
||||||
|
} else {
|
||||||
|
// failed to unlock
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// no unlock procedure
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user