Remove unneeded setrpc method.

This commit is contained in:
Kevin Serrano 2017-03-08 09:08:28 -08:00
parent cf2268c3d2
commit 0ee8ca178e
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4
1 changed files with 8 additions and 20 deletions

View File

@ -680,31 +680,19 @@ function setDefaultRpcTarget (rpcList) {
console.error(err)
return dispatch(self.displayWarning('Had a problem changing networks.'))
}
dispatch(self.setRpc(result))
})
}
}
function setRpcTarget (newRpc) {
log.debug(`background.setRpcTarget`)
return (dispatch) => {
background.setCustomRpc(newRpc, (err, result) => {
if (err) {
console.err(err)
return dispatch(self.displayWarning('Had a problem changing networks!'))
}
dispatch(self.setRpc(result))
})
}
}
function setRpc (newRpc) {
return {
type: actions.SET_RPC_TARGET,
value: 'http://localhost:8545',
log.debug(`background.setRpcTarget`)
return (dispatch) => {
background.setCustomRpc(newRpc, (err, result) => {
if (err) {
console.err(err)
return dispatch(self.displayWarning('Had a problem changing networks!'))
}
})
}
}