pool: minor.

This commit is contained in:
Christopher Jeffrey 2016-12-21 16:17:23 -08:00
parent c10f689435
commit 0eaa26a374
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -3130,7 +3130,6 @@ LoadRequest.prototype.finish = function finish() {
LoadRequest.prototype.inspect = function inspect() {
return '<LoadRequest:'
+ ' id=' + this.id
+ ' type=' + (this.type === invTypes.TX ? 'tx' : 'block')
+ ' active=' + this.active
+ ' hash=' + util.revHex(this.hash)
@ -3310,7 +3309,6 @@ BroadcastItem.prototype.reject = function reject(peer) {
BroadcastItem.prototype.inspect = function inspect() {
return '<BroadcastItem:'
+ ' id=' + this.id
+ ' type=' + (this.type === invTypes.TX ? 'tx' : 'block')
+ ' hash=' + util.revHex(this.hash)
+ '>';