mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Return Promise from updateAndSetCustomRpc
thunk (#8440)
`updateAndSetCustomRpc` returned a thunk that didn't return a Promise, despite doing async work. It now returns a Promise. In the one place where this is used, it didn't seem important to update the callsite to block on this finishing. Only one call followed it in the event handler, and it didn't seem to depend on this.
This commit is contained in:
parent
06ba0db840
commit
47b785ad7e
@ -1445,17 +1445,20 @@ export function setPreviousProvider (type) {
|
||||
}
|
||||
|
||||
export function updateAndSetCustomRpc (newRpc, chainId, ticker = 'ETH', nickname, rpcPrefs) {
|
||||
return (dispatch) => {
|
||||
return async (dispatch) => {
|
||||
log.debug(`background.updateAndSetCustomRpc: ${newRpc} ${chainId} ${ticker} ${nickname}`)
|
||||
background.updateAndSetCustomRpc(newRpc, chainId, ticker, nickname || newRpc, rpcPrefs, (err) => {
|
||||
if (err) {
|
||||
log.error(err)
|
||||
return dispatch(displayWarning('Had a problem changing networks!'))
|
||||
}
|
||||
dispatch({
|
||||
type: actionConstants.SET_RPC_TARGET,
|
||||
value: newRpc,
|
||||
})
|
||||
|
||||
try {
|
||||
await promisifiedBackground.updateAndSetCustomRpc(newRpc, chainId, ticker, nickname || newRpc, rpcPrefs)
|
||||
} catch (error) {
|
||||
log.error(error)
|
||||
dispatch(displayWarning('Had a problem changing networks!'))
|
||||
return
|
||||
}
|
||||
|
||||
dispatch({
|
||||
type: actionConstants.SET_RPC_TARGET,
|
||||
value: newRpc,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user