Allow remote signing - broken options

This commit is contained in:
wltsmrz
2014-05-02 12:41:52 -07:00
parent c3f630c27f
commit 3199aa438a

View File

@@ -78,8 +78,8 @@ function Remote(opts, trace) {
var self = this; var self = this;
this.trusted = opts.trusted; this.trusted = Boolean(opts.trusted);
this.local_sequence = opts.local_sequence; // Locally track sequence numbers this.local_sequence = Boolean(opts.local_sequence); // Locally track sequence numbers
this.local_fee = (typeof opts.local_fee === 'undefined') ? true : opts.local_fee; // Locally set fees this.local_fee = (typeof opts.local_fee === 'undefined') ? true : opts.local_fee; // Locally set fees
this.local_signing = (typeof opts.local_signing === 'undefined') ? true : opts.local_signing; this.local_signing = (typeof opts.local_signing === 'undefined') ? true : opts.local_signing;
this.fee_cushion = (typeof opts.fee_cushion === 'undefined') ? 1.2 : opts.fee_cushion; this.fee_cushion = (typeof opts.fee_cushion === 'undefined') ? 1.2 : opts.fee_cushion;