Skip to content

Commit

Permalink
Fix unsubscribe and add a test (#4058) (#4300)
Browse files Browse the repository at this point in the history
* Fix unsubscribe and add a test (#4058)

Co-authored-by: Alex <[email protected]>
Co-authored-by: Wyatt Barnes <[email protected]>

* Update CHANGELOG

Co-authored-by: Samlior <[email protected]>
Co-authored-by: Alex <[email protected]>
  • Loading branch information
3 people authored Oct 5, 2021
1 parent 1216049 commit dbb4350
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,11 +444,9 @@ Released with 1.0.0-beta.37 code base.
- ethers from 5.1.4 to 5.4.4 (#4231)
- karma from 5.2.3 to 6.3.4 (#4231)
- lerna from 3.22.1 to 4.0.0 (#4231)
- Dropped build tests in CI for Node v8 and v10, and added support for Node v14
- Dropped build tests in CI for Node v8 and v10, and added support for Node v14 (#4231)
- Change default value for `maxPriorityFeePerGas` from `1 Gwei` to `2.5 Gwei` (#4284)
- Introduced new configuration "blockHeaderTimeout" for waiting of block headers for transaction receipt (#3891)
- Fixed bug in signTransaction (#4295)
- Format `block.baseFeePerGas` to number (#4330)

## [Unreleased]

Expand All @@ -465,3 +463,6 @@ Released with 1.0.0-beta.37 code base.
- Not considering `tx.chainId` if `tx.common.customChain.chainId` is provided for `web3.eth.accounts.signTransaction` function (#4293)
- Added missing PromiEvent handler types (#4194)
- Updated README to include Webpack 5 angular support instructions (#4174)
- Emit subscription id with connect event when creating a subscription (#4300)
- Introduced new configuration "blockHeaderTimeout" for waiting of block headers for transaction receipt (#3891)
- Format `block.baseFeePerGas` to number (#4330)
2 changes: 1 addition & 1 deletion packages/web3-core-subscriptions/src/subscription.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ Subscription.prototype.subscribe = function() {
if(!err && result) {
_this.id = result;
_this.method = payload.params[0];
_this.emit('connected', result);

// call callback on notifications
_this.options.requestManager.addSubscription(_this, function(error, result) {
Expand Down Expand Up @@ -310,6 +309,7 @@ Subscription.prototype.subscribe = function() {
_this.emit('error', error);
}
});
_this.emit('connected', result);
} else {
setTimeout(function(){
_this.callback(err, false, _this);
Expand Down
12 changes: 12 additions & 0 deletions test/eth.subscribe.ganache.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,18 @@ describe('subscription connect/reconnect', function () {
});
});

it('unsubscribe should remove the subscription object from the subscriptions and send eth_unsubscribe to the node', function (done) {
subscription = web3.eth
.subscribe('newBlockHeaders')
.on('connected', function () {
const id = subscription.id;
assert(subscription.options.requestManager.subscriptions.has(id));
subscription.unsubscribe(); // Send eth_unsubscribe to the node
assert(!subscription.options.requestManager.subscriptions.has(id));
done();
});
});

it('clearSubscriptions', async function() {
web3.eth.subscribe('newBlockHeaders');
await waitSeconds(1); // Sub need a little time to set up
Expand Down

0 comments on commit dbb4350

Please sign in to comment.