Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,12 @@ Released with 1.0.0-beta.37 code base.

## [1.7.2]

### Changed
- Remove deprecated `close` event listener (#4825) (#4839)

### Security
- `npm audit fix` to update libraries (#4860)

### Fixed
- Fix jsonrpc payload and response types (#4743) (#4761)
- Fix jsonrpc payload and response types (#4743) (#4761)

2 changes: 0 additions & 2 deletions packages/web3-core-requestmanager/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,6 @@ RequestManager.prototype.setProvider = function (provider, net) {
_this.provider.emit('end', event);
}
};
// TODO: Remove close once the standard allows it
this.provider.on('close', disconnect);
this.provider.on('disconnect', disconnect);

// TODO add end, timeout??
Expand Down