This commit is contained in:
Christopher Jeffrey 2016-04-20 03:53:11 -07:00
parent 50cc693ae8
commit 6dd5b936ef
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD
8 changed files with 0 additions and 32 deletions

View File

@ -519,9 +519,5 @@ ChainBlock.isChainBlock = function isChainBlock(obj) {
&& typeof obj.getMedianTime === 'function';
};
/**
* Expose
*/
return ChainBlock;
};

View File

@ -1723,9 +1723,5 @@ NullCache.prototype.get = function get(key) {};
NullCache.prototype.has = function has(key) {};
NullCache.prototype.reset = function reset() {};
/**
* Expose
*/
return ChainDB;
};

View File

@ -284,9 +284,5 @@ Coin.isCoin = function isCoin(obj) {
&& typeof obj.getConfirmations === 'function';
};
/**
* Expose
*/
return Coin;
};

View File

@ -300,8 +300,4 @@ Environment.prototype.now = function now() {
return this.time.now();
};
/**
* Expose
*/
module.exports = Environment;

View File

@ -155,9 +155,5 @@ Headers.isHeaders = function isHeaders(obj) {
&& typeof obj.toBlock !== 'function';
};
/**
* Expose
*/
return Headers;
};

View File

@ -412,9 +412,5 @@ Input.isInput = function isInput(obj) {
&& typeof obj.getAddress === 'function';
};
/**
* Expose
*/
return Input;
};

View File

@ -1505,9 +1505,5 @@ Mempool.prototype._removeUnchecked = function removeUnchecked(hash, callback, fo
});
};
/**
* Expose
*/
return Mempool;
};

View File

@ -224,9 +224,5 @@ Output.isOutput = function isOutput(obj) {
&& typeof obj.getAddress === 'function';
};
/**
* Expose
*/
return Output;
};