Security: Enable local_signing by default.

This commit is contained in:
Stefan Thomas
2013-06-03 13:15:22 +02:00
parent b0c8d67d27
commit 10c883e432

View File

@@ -286,7 +286,8 @@ var Remote = function (opts, trace) {
this.websocket_ssl = opts.websocket_ssl;
this.local_sequence = opts.local_sequence; // Locally track sequence numbers
this.local_fee = opts.local_fee; // Locally set fees
this.local_signing = opts.local_signing;
this.local_signing = ("undefined" === typeof opts.local_signing)
? true : opts.local_signing;
this.id = 0;
this.trace = opts.trace || trace;
this._server_fatal = false; // True, if we know server exited.