mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
* Use only named volumes in docker-compose * Try fixing itest with new docker compose * Update development doc
10 lines
322 B
Bash
Executable file
10 lines
322 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
while true; do
|
|
client_address=$(docker exec -it test_lnd_client lncli --network=simnet newaddress np2wkh | jq .address -r)
|
|
MINING_ADDRESS=$client_address docker compose up -d btcd
|
|
echo "Mining 1 blocks to address: $client_address ..."
|
|
docker compose run btcctl generate 400
|
|
sleep 10
|
|
done
|