Skip to content

Commit 70d423f

Browse files
committed
update faucet url
1 parent 713f038 commit 70d423f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var https = require('https')
22

33
function faucetWithdraw(address, amount, done) {
4-
var url = "https://coconut-macaroon.herokuapp.com/bitcoin/testnet/withdrawal?address=" + address + "&amount=" + amount
4+
var url = "https://coconut-macaroon.herokuapp.com/withdrawal?address=" + address + "&amount=" + amount
55
https.get(url, function(res) {
66
res.statusCode == 200 ? done(null) : done(new Error("non-200 status: " + res.statusCode))
77
}).on('error', done)

0 commit comments

Comments
 (0)