Skip to content

Commit

Permalink
fix: bump docker images to rc5 + fix gatewaystate::connected error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Dec 6, 2023
1 parent 9fc6a78 commit 39996a6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker/fedimintd-mutinynet/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3"

services:
fedimintd:
image: fedimint/fedimintd:v0.2.0-rc3
image: fedimint/fedimintd:v0.2.0-rc5
volumes:
- fedimintd_data:/data
ports:
Expand All @@ -23,7 +23,7 @@ services:
platform: linux/amd64

guardian-ui:
image: fedimintui/guardian-ui:0.2.0-rc3
image: fedimintui/guardian-ui:0.2.0-rc4
ports:
- "0.0.0.0:3000:3000"
environment:
Expand Down
8 changes: 4 additions & 4 deletions docker/gateway-mutinynet/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3"

services:
gatewayd:
image: fedimint/gatewayd:v0.2.0-rc3
image: fedimint/gatewayd:v0.2.0-rc5
command: gatewayd lnd
environment:
# Path to folder containing gateway config and data files
Expand Down Expand Up @@ -34,7 +34,7 @@ services:
platform: linux/amd64

gateway-ui:
image: fedimintui/gateway-ui:0.2.0-rc3
image: fedimintui/gateway-ui:0.2.0-rc4
# image: gateway-ui
ports:
- "0.0.0.0:3001:3001"
Expand All @@ -48,7 +48,7 @@ services:
platform: linux/amd64

lnd:
image: lightninglabs/lnd:v0.16.4-beta
image: lightninglabs/lnd:v0.17.3-beta
entrypoint: bash
command:
- -c
Expand All @@ -72,7 +72,7 @@ services:
masterPassword: "thereisnosecondbest"
accounts:
- name: "main lnd"
serverUrl: "https://lnd:10009"
serverUrl: "lnd:10009"
lndDir: "/root/.lnd"
network: signet
EOF
Expand Down
1 change: 1 addition & 0 deletions gateway/ln-gateway/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,7 @@ impl Gateway {
warn!("Lightning node does not match previously configured gateway network : ({:?})", config.network);
info!("Changing gateway network to match lightning node network : ({:?})", lightning_network);
self.handle_disconnect(htlc_task_group).await;
self.set_gateway_state(GatewayState::Connected).await;
self.handle_set_configuration_msg(SetConfigurationPayload {
password: Some(config.password),
network: Some(lightning_network),
Expand Down

0 comments on commit 39996a6

Please sign in to comment.