We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 713f038 commit 70d423fCopy full SHA for 70d423f
test/integration/utils.js
@@ -1,7 +1,7 @@
1
var https = require('https')
2
3
function faucetWithdraw(address, amount, done) {
4
- var url = "https://coconut-macaroon.herokuapp.com/bitcoin/testnet/withdrawal?address=" + address + "&amount=" + amount
+ var url = "https://coconut-macaroon.herokuapp.com/withdrawal?address=" + address + "&amount=" + amount
5
https.get(url, function(res) {
6
res.statusCode == 200 ? done(null) : done(new Error("non-200 status: " + res.statusCode))
7
}).on('error', done)
0 commit comments