Skip to content

Commit

Permalink
Error propagation interrupted fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anastasov-menasoft committed Aug 28, 2019
1 parent eebd3a1 commit c3b41a1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
## 2019-08-28, Version 2.0.1

#### Notable changes:
* Error propagation interrupted fix


## 2019-07-25, Version 2.0.0

This is a rewrite release.

### Notable changes:
#### Notable changes:
* DASH support added
* Previous implementations of this library will need to adapt their calls to the new structure
* Network utility methods added to each chain
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cryptoapis.io",
"version": "2.0.0",
"version": "2.0.1",
"description": "Crypto APIs SDK",
"main": "src/index.js",
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions src/common/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ const Request = (apiKey, path, opt = {}, postData = null) => {
}

req.end();
})
.catch(console.error);
});
};

module.exports = Request;

0 comments on commit c3b41a1

Please sign in to comment.