Skip to content

Commit cc72d75

Browse files
author
Bernard Snowden
committedJun 8, 2020
local testing
1 parent 1427972 commit cc72d75

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎src/providers/bwc/bwc.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ export class BwcProvider {
5656

5757
// note opts use `bwsurl` all lowercase;
5858
let bwc = new BWC({
59-
baseUrl: opts.bwsurl || 'https://bws.bitpay.com/bws/api',
59+
baseUrl:
60+
opts.bwsurl || 'https://bws.bitpay.com/bws/api' // 'http://localhost:3232/bws/api', uncmment for local testing
6061
verbose: opts.verbose,
6162
timeout: 100000,
6263
transports: ['polling'],

‎src/providers/config/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export class ConfigProvider {
168168

169169
// Bitcore wallet service URL
170170
bws: {
171-
url: 'http://localhost:3232/bws/api'
171+
url: 'https://bws.bitpay.com/bws/api' // Uncomment and replace w/ http://localhost:3232/bws/api for testing
172172
},
173173

174174
adPubKey: {

0 commit comments

Comments
 (0)
Please sign in to comment.