mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Use async/await for getRestrictedMethods (#9099)
This commit is contained in:
parent
2445c0b41b
commit
a7089193c8
@ -1,34 +1,30 @@
|
||||
export default function getRestrictedMethods ({ getIdentities, getKeyringAccounts }) {
|
||||
return {
|
||||
'eth_accounts': {
|
||||
method: (_, res, __, end) => {
|
||||
getKeyringAccounts()
|
||||
.then((accounts) => {
|
||||
const identities = getIdentities()
|
||||
res.result = accounts
|
||||
.sort((firstAddress, secondAddress) => {
|
||||
if (!identities[firstAddress]) {
|
||||
throw new Error(`Missing identity for address ${firstAddress}`)
|
||||
} else if (!identities[secondAddress]) {
|
||||
throw new Error(`Missing identity for address ${secondAddress}`)
|
||||
} else if (identities[firstAddress].lastSelected === identities[secondAddress].lastSelected) {
|
||||
return 0
|
||||
} else if (identities[firstAddress].lastSelected === undefined) {
|
||||
return 1
|
||||
} else if (identities[secondAddress].lastSelected === undefined) {
|
||||
return -1
|
||||
}
|
||||
method: async (_, res, __, end) => {
|
||||
try {
|
||||
const accounts = await getKeyringAccounts()
|
||||
const identities = getIdentities()
|
||||
res.result = accounts.sort((firstAddress, secondAddress) => {
|
||||
if (!identities[firstAddress]) {
|
||||
throw new Error(`Missing identity for address ${firstAddress}`)
|
||||
} else if (!identities[secondAddress]) {
|
||||
throw new Error(`Missing identity for address ${secondAddress}`)
|
||||
} else if (identities[firstAddress].lastSelected === identities[secondAddress].lastSelected) {
|
||||
return 0
|
||||
} else if (identities[firstAddress].lastSelected === undefined) {
|
||||
return 1
|
||||
} else if (identities[secondAddress].lastSelected === undefined) {
|
||||
return -1
|
||||
}
|
||||
|
||||
return identities[secondAddress].lastSelected - identities[firstAddress].lastSelected
|
||||
})
|
||||
end()
|
||||
return identities[secondAddress].lastSelected - identities[firstAddress].lastSelected
|
||||
})
|
||||
.catch(
|
||||
(err) => {
|
||||
res.error = err
|
||||
end(err)
|
||||
},
|
||||
)
|
||||
end()
|
||||
} catch (err) {
|
||||
res.error = err
|
||||
end(err)
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user