Browse Source

Fix inspect method so it doesn't fail on incomplete TX

patch-2
Esteban Ordano 10 years ago
parent
commit
67164790ff
  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');
};
@ -161,7 +161,7 @@ Transaction.prototype._hasDustOutputs = function() {
};
Transaction.prototype.inspect = function() {
return '<Transaction: ' + this.toString() + '>';
return '<Transaction: ' + this.uncheckedSerialize() + '>';
};
Transaction.prototype.toBuffer = function() {

Loading…
Cancel
Save