Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd committed Feb 23, 2024
1 parent 32195c9 commit 4d14ad1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions demo/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export async function fund_regtest_address (
spawn : false,
verbose : false
})
console.log('funding address :', address)
console.log('sending amount :', amount)
console.log('\nfunding address :', address)
console.log('sending amount :', amount, '\n')
return daemon.run(async client => {
await CoreUtil.fund_address(client, 'faucet', address, amount, true)
await daemon.shutdown()
Expand All @@ -23,8 +23,8 @@ export async function fund_mutiny_address (
address : string,
amount : number
) {
console.log('funding address :', address)
console.log('sending amount :', amount)
console.log('\nfunding address :', address)
console.log('sending amount :', amount, '\n')
const url = 'https://faucet.mutinynet.com/api/onchain'
const opt = {
body : JSON.stringify({ address, sats : amount }),
Expand Down

0 comments on commit 4d14ad1

Please sign in to comment.