mtx: fix mtx.fromJSON.

This commit is contained in:
Christopher Jeffrey 2017-01-15 17:10:24 -08:00
parent 15579a6b21
commit 94460ba592
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -1371,7 +1371,7 @@ MTX.prototype.getJSON = function getJSON(network) {
*/
MTX.fromJSON = function fromJSON(json) {
return new MTX().fromJSON(JSON);
return new MTX().fromJSON(json);
};
/**