`request.del()` at https://github.com/blockcypher/node-client/blob/c2b99e9917bdf41d93d8cc9c96acc385d628a45b/lib/bcypher.js#L654 throws this error: error: { "errno": "ECONNREFUSED", "code": "ECONNREFUSED", "syscall": "connect", "address": "127.0.0.1", "port": 80 } When I replace the `request.del()` call with this `HTTP.call()` deletion works: ``` const response = HTTP.call("DELETE", urlr, { query: "token=" + Meteor.settings.BC_TOKEN }) if (response.statusCode === 204) { console.log("webhook deleted successfully: ", response.statusCode) return true } else { console.error("error when deleting webhook:", response.statusCode) console.log("response.content:", response.content) } ``` Please fix this.
request.del()atnode-client/lib/bcypher.js
Line 654 in c2b99e9
throws this error:
error: {
"errno": "ECONNREFUSED",
"code": "ECONNREFUSED",
"syscall": "connect",
"address": "127.0.0.1",
"port": 80
}
When I replace the
request.del()call with thisHTTP.call()deletion works:Please fix this.