Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unsubscribe and add a test (#4058) #4300

Merged
merged 9 commits into from
Oct 5, 2021
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,3 +447,4 @@ Released with 1.0.0-beta.37 code base.
- 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
- Change default value for `maxPriorityFeePerGas` from `1 Gwei` to `2.5 Gwei` (#4284)
- Emit subscription id with connect event when creating a subscription (#4300)
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);
nazarhussain marked this conversation as resolved.
Show resolved Hide resolved
} 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