diff --git a/.github/workflows/vss-integration.yml b/.github/workflows/vss-integration.yml index df739abc..44b7f445 100644 --- a/.github/workflows/vss-integration.yml +++ b/.github/workflows/vss-integration.yml @@ -68,7 +68,7 @@ jobs: ./gradlew --version ./gradlew build - docker cp app/build/libs/app-1.0.war tomcat:/usr/local/tomcat/webapps/vss.war + docker cp app/build/libs/vss-1.0.war tomcat:/usr/local/tomcat/webapps/vss.war cd ../ - name: Run VSS Integration tests against vss-instance. run: | diff --git a/Cargo.toml b/Cargo.toml index 9d350e18..39f3b947 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ lightning-persister = { version = "0.0.123" } lightning-background-processor = { version = "0.0.123", features = ["futures"] } lightning-rapid-gossip-sync = { version = "0.0.123" } lightning-transaction-sync = { version = "0.0.123", features = ["esplora-async-https", "time"] } -lightning-liquidity = { version = "0.1.0-alpha.4", features = ["std"] } +lightning-liquidity = { version = "=0.1.0-alpha.4", features = ["std"] } #lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["std"] } #lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" } @@ -71,7 +71,7 @@ libc = "0.2" uniffi = { version = "0.26.0", features = ["build"], optional = true } [target.'cfg(vss)'.dependencies] -vss-client = "0.2" +vss-client = "0.3" prost = { version = "0.11.6", default-features = false} [target.'cfg(windows)'.dependencies] diff --git a/src/io/vss_store.rs b/src/io/vss_store.rs index ec8f04b6..ba09b598 100644 --- a/src/io/vss_store.rs +++ b/src/io/vss_store.rs @@ -61,7 +61,7 @@ impl VssStore { ) }) as _); - let client = VssClient::new(&base_url, retry_policy); + let client = VssClient::new(base_url, retry_policy); Self { client, store_id, runtime, storable_builder } }