mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-15 12:50:47 +02:00
* Rename docker lnd container * Rename itest containers to avoid conflict with main containers
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
|