From ff5e9fcaa98a423459dd2e8aeaa3fd18a8e371bd Mon Sep 17 00:00:00 2001 From: Vahe Hovhannisyan Date: Mon, 9 Dec 2013 12:36:14 -0800 Subject: [PATCH] Transaction: semicolon, comma fixes. --- src/js/ripple/transaction.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/js/ripple/transaction.js b/src/js/ripple/transaction.js index 8d7800df..75cb15b4 100644 --- a/src/js/ripple/transaction.js +++ b/src/js/ripple/transaction.js @@ -87,7 +87,7 @@ util.inherits(Transaction, EventEmitter); // XXX This needs to be determined from the network. Transaction.fee_units = { - default: 10, + default: 10 }; Transaction.flags = { @@ -128,7 +128,7 @@ Transaction.prototype.consts = { tefFAILURE: -199, terRETRY: -99, tesSUCCESS: 0, - tecCLAIMED: 100, + tecCLAIMED: 100 }; Transaction.from_json = function(j) { @@ -564,7 +564,7 @@ Transaction.prototype.payment = function(src, dst, amount) { this.tx_json.Destination = UInt160.json_rewrite(dst); return this; -} +}; Transaction.prototype.rippleLineSet = function(src, limit, quality_in, quality_out) { if (typeof src === 'object') {