Fix reference to Transaction#parseJson.

This commit is contained in:
Stefan Thomas
2014-02-04 15:40:10 -08:00
parent cdfb7989b0
commit 257e9da563

View File

@@ -134,7 +134,7 @@ Transaction.prototype.consts = {
};
Transaction.from_json = function(j) {
return (new Transaction()).parse_json(j);
return (new Transaction()).parseJson(j);
};
Transaction.prototype.parseJson = function(v) {