From 847613add1b5e96811fde6036b7172aeff171236 Mon Sep 17 00:00:00 2001 From: wilsonianb Date: Tue, 14 Jul 2015 16:27:29 -0700 Subject: [PATCH] [TASK] Enable local_signing Fixes #6 --- lib/account_set_domain.js | 1 + lib/pay.js | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/account_set_domain.js b/lib/account_set_domain.js index 653bd7f..42182b5 100644 --- a/lib/account_set_domain.js +++ b/lib/account_set_domain.js @@ -23,6 +23,7 @@ module.exports = function(domain) { var server = program.server || 'wss://s1.ripple.com:443' var remote = new ripple.Remote({ + local_signing: true, servers: [ server ] }) diff --git a/lib/pay.js b/lib/pay.js index 20cac30..f8f4d3b 100644 --- a/lib/pay.js +++ b/lib/pay.js @@ -9,6 +9,7 @@ module.exports = function(destination, amount, currency, issuer) { var server = program.server || 'wss://s1.ripple.com:443' var remote = new ripple.Remote({ + local_signing: true, servers: [ server ] })