Fixed bug, toObject should use other object's toObject

This commit is contained in:
Braydon Fuller 2014-12-13 13:11:03 -05:00
parent 5477a2d857
commit f43c2f9aa3
2 changed files with 3 additions and 3 deletions

View File

@ -149,7 +149,7 @@ Block.fromRawBlock = function fromRawBlock(data) {
Block.prototype.toObject = function toObject() {
var txs = [];
this.txs.forEach(function(tx) {
txs.push(tx.toJSON());
txs.push(tx.toObject());
});
return {
magicnum: this.magicnum,

View File

@ -144,11 +144,11 @@ Transaction.prototype.fromJSON = function(json) {
Transaction.prototype.toObject = function toObject() {
var inputs = [];
this.inputs.forEach(function(input) {
inputs.push(input.toJSON());
inputs.push(input.toObject());
});
var outputs = [];
this.outputs.forEach(function(output) {
outputs.push(output.toJSON());
outputs.push(output.toObject());
});
return {
version: this.version,