Proper max_fee comparison

This commit is contained in:
wltsmrz
2013-09-05 15:07:18 -07:00
parent ef83019a4b
commit ceea368a5c

View File

@@ -351,7 +351,7 @@ TransactionManager.prototype.submit = function(tx) {
tx.emit('error', new RippleError('tejAbort', 'Transaction aborted'));
});
var fee = tx.tx_json.Fee;
var fee = Number(tx.tx_json.Fee);
var remote = this.remote;
if (!tx._secret && !tx.tx_json.TxnSignature) {