diff options
Diffstat (limited to 'dist/ethereum.js')
-rw-r--r-- | dist/ethereum.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dist/ethereum.js b/dist/ethereum.js index a3a76547f..0a83a3c50 100644 --- a/dist/ethereum.js +++ b/dist/ethereum.js @@ -690,6 +690,9 @@ var Filter = function(options, impl) { Filter.prototype.arrived = function(callback) { this.changed(callback); }; +Filter.prototype.happened = function(callback) { + this.changed(callback); +}; /// gets called when there is new eth/shh message Filter.prototype.changed = function(callback) { |