client: fix typo.

This commit is contained in:
Christopher Jeffrey 2017-07-01 03:42:31 -07:00
parent 10672784e5
commit c732333554
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -261,7 +261,7 @@ WalletClient.prototype.addFilter = function addFilter(chunks) {
chunks = [chunks];
return new Promise((resolve, reject) => {
this.socket.emit('add filter', out, wrap(resolve, reject));
this.socket.emit('add filter', chunks, wrap(resolve, reject));
});
};