2
0
mirror of https://github.com/lnbook/lnbook synced 2024-11-01 03:20:53 +00:00
lnbook/code/docker/c-lightning/fund-c-lightning.sh
Christian Decker b951cfa970 cl: Use bitcoin-cli to fund the wallet
Simpler than using curl+json and have to add the wallet argument.
2021-08-25 21:23:16 +02:00

14 lines
422 B
Bash

#!/bin/bash
set -Eeuo pipefail
# Generate a new receiving address for c-lightning wallet
address=$(lightning-cli --lightning-dir=/lightningd --network regtest newaddr | jq '.bech32' -r)
# Ask Bitcoin Core to send 10 BTC to the address, using JSON-RPC call
bitcoin-cli \
--rpcuser=regtest \
--rpcpassword=regtest \
--rpcconnect=bitcoind \
--regtest \
sendtoaddress ${address} 10 "funding c-lightning"