pool: cleanup.

This commit is contained in:
Christopher Jeffrey 2017-01-21 04:15:16 -08:00
parent 9d580289ab
commit 3abfdb3770
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -106,13 +106,11 @@ function Pool(options) {
this.locker = new Lock(true); this.locker = new Lock(true);
this.connected = false; this.connected = false;
this.syncing = false; this.syncing = false;
this.nonce = util.nonce();
this.spvFilter = null; this.spvFilter = null;
this.txFilter = null; this.txFilter = null;
this.requestMap = new Map(); this.requestMap = new Map();
this.compactBlocks = new Map(); this.compactBlocks = new Map();
this.invMap = new Map(); this.invMap = new Map();
this.scheduled = false;
this.pendingWatch = null; this.pendingWatch = null;
this.pendingRefill = null; this.pendingRefill = null;