json-rpc parameter bugfix (#129)
* json-rpc parameter bugfix * small change * Update json-rpc.js
This commit is contained in:
parent
dd7e447e73
commit
1bcf586544
2 changed files with 7 additions and 3 deletions
|
|
@ -6,7 +6,7 @@ const _ = require('lodash/fp')
|
|||
|
||||
module.exports = {fetch, parseConf}
|
||||
|
||||
function fetch (account, method, params) {
|
||||
function fetch (account = {}, method = {}, params = {}) {
|
||||
return Promise.resolve(true)
|
||||
.then(() => {
|
||||
const data = {
|
||||
|
|
@ -14,6 +14,9 @@ function fetch (account, method, params) {
|
|||
params,
|
||||
id: uuid.v4()
|
||||
}
|
||||
|
||||
if (_.isNil(account.port)) throw new Error('port attribute required for jsonRpc')
|
||||
|
||||
const url = _.defaultTo(`http://localhost:${account.port}`, params.url)
|
||||
|
||||
return axios({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue