Browse Source

Merge pull request #1047 from eordano/fix/inspect

Fix inspect method so it doesn't fail on incomplete TX
patch-2
Yemel Jardi 10 years ago
parent
commit
5f5be614f5
  1. 4
      lib/transaction/transaction.js

4
lib/transaction/transaction.js

@ -114,7 +114,7 @@ Transaction.prototype.serialize = function(unsafe) {
} }
}; };
Transaction.prototype.uncheckedSerialize = Transaction.prototype.toString = function() { Transaction.prototype.uncheckedSerialize = function() {
return this.toBuffer().toString('hex'); return this.toBuffer().toString('hex');
}; };
@ -161,7 +161,7 @@ Transaction.prototype._hasDustOutputs = function() {
}; };
Transaction.prototype.inspect = function() { Transaction.prototype.inspect = function() {
return '<Transaction: ' + this.toString() + '>'; return '<Transaction: ' + this.uncheckedSerialize() + '>';
}; };
Transaction.prototype.toBuffer = function() { Transaction.prototype.toBuffer = function() {

Loading…
Cancel
Save