From 1d3d727f31f1479ddc519d046e51f353a2d14ee6 Mon Sep 17 00:00:00 2001 From: Fabian Vogelsteller Date: Fri, 5 Jun 2015 11:05:14 +0200 Subject: [PATCH] improved comment --- lib/web3/filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/web3/filter.js b/lib/web3/filter.js index d036152..3ace6b3 100644 --- a/lib/web3/filter.js +++ b/lib/web3/filter.js @@ -145,7 +145,7 @@ Filter.prototype.watch = function (callback) { Filter.prototype.stopWatching = function () { RequestManager.getInstance().stopPolling(this.filterId); - // remove async + // remove filter async this.implementation.uninstallFilter(this.filterId, function(){}); this.callbacks = []; };