Skip to content

Commit 1a6a2ca

Browse files
authoredSep 13, 2024
Merge pull request #357 from G8XSU/vss-client-upgrade
Vss-client upgrade to 0.3.x
2 parents 6d8382b + 7c7b98b commit 1a6a2ca

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎.github/workflows/vss-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
./gradlew --version
6969
./gradlew build
7070
71-
docker cp app/build/libs/app-1.0.war tomcat:/usr/local/tomcat/webapps/vss.war
71+
docker cp app/build/libs/vss-1.0.war tomcat:/usr/local/tomcat/webapps/vss.war
7272
cd ../
7373
- name: Run VSS Integration tests against vss-instance.
7474
run: |

‎Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ lightning-persister = { version = "0.0.123" }
3535
lightning-background-processor = { version = "0.0.123", features = ["futures"] }
3636
lightning-rapid-gossip-sync = { version = "0.0.123" }
3737
lightning-transaction-sync = { version = "0.0.123", features = ["esplora-async-https", "time"] }
38-
lightning-liquidity = { version = "0.1.0-alpha.4", features = ["std"] }
38+
lightning-liquidity = { version = "=0.1.0-alpha.4", features = ["std"] }
3939

4040
#lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["std"] }
4141
#lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
@@ -71,7 +71,7 @@ libc = "0.2"
7171
uniffi = { version = "0.26.0", features = ["build"], optional = true }
7272

7373
[target.'cfg(vss)'.dependencies]
74-
vss-client = "0.2"
74+
vss-client = "0.3"
7575
prost = { version = "0.11.6", default-features = false}
7676

7777
[target.'cfg(windows)'.dependencies]

‎src/io/vss_store.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ impl VssStore {
6161
)
6262
}) as _);
6363

64-
let client = VssClient::new(&base_url, retry_policy);
64+
let client = VssClient::new(base_url, retry_policy);
6565
Self { client, store_id, runtime, storable_builder }
6666
}
6767

0 commit comments

Comments
 (0)