We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1427972 commit cc72d75Copy full SHA for cc72d75
src/providers/bwc/bwc.ts
@@ -56,7 +56,8 @@ export class BwcProvider {
56
57
// note opts use `bwsurl` all lowercase;
58
let bwc = new BWC({
59
- baseUrl: opts.bwsurl || 'https://bws.bitpay.com/bws/api',
+ baseUrl:
60
+ opts.bwsurl || 'https://bws.bitpay.com/bws/api' // 'http://localhost:3232/bws/api', uncmment for local testing
61
verbose: opts.verbose,
62
timeout: 100000,
63
transports: ['polling'],
src/providers/config/config.ts
@@ -168,7 +168,7 @@ export class ConfigProvider {
168
169
// Bitcore wallet service URL
170
bws: {
171
- url: 'http://localhost:3232/bws/api'
+ url: 'https://bws.bitpay.com/bws/api' // Uncomment and replace w/ http://localhost:3232/bws/api for testing
172
},
173
174
adPubKey: {
0 commit comments