Skip to content

Commit

Permalink
dev(regtest): update lnd instance from v0.17.2-beta to v0.17.4-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Jun 12, 2024
1 parent 3ae250e commit 7ef1e98
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
postgres:
restart: always
container_name: regtest_db
image: postgres:16.0-alpine3.18
image: postgres:16.2-alpine3.18
volumes:
- postgres-data:/postgresql_data
- ./data/pg/init:/docker-entrypoint-initdb.d/
Expand All @@ -24,7 +24,7 @@ services:

bitcoind:
container_name: regtest_bitcoind
image: polarlightning/bitcoind:25.0
image: polarlightning/bitcoind:26.0
restart: always
volumes:
- bitcoind-data:/home/bitcoin/.bitcoin/regtest
Expand Down Expand Up @@ -326,7 +326,7 @@ services:

lnd6_farid:
container_name: regtest_lnd6_farid
image: polarlightning/lnd:0.17.2-beta
image: polarlightning/lnd:0.17.4-beta
restart: always
depends_on:
bitcoind:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void run() throws IOException {
}

private void beforeSetup() throws IOException {
BitcoindRegtestTestHelper.createDefaultWalletIfNecessary(bitcoinClient);
BitcoindRegtestTestHelper.createDescriptorWallet(bitcoinClient, "");

// it seems to be necessary to mine a single block and wait for the nodes to synchronize.
// otherwise, LND seems to be stuck on regtest indefinitely (last check: 2023-12-02).
Expand Down Expand Up @@ -407,7 +407,7 @@ private static class OnchainFaucet {
private Address address;

public void init() throws IOException {
BitcoindRegtestTestHelper.createDefaultWalletIfNecessary(bitcoinClient);
BitcoindRegtestTestHelper.createDescriptorWallet(bitcoinClient, "");

this.address = bitcoinClient.getNewAddress();

Expand Down

0 comments on commit 7ef1e98

Please sign in to comment.