Skip to content

Commit

Permalink
Merge pull request #357 from G8XSU/vss-client-upgrade
Browse files Browse the repository at this point in the history
Vss-client upgrade to 0.3.x
  • Loading branch information
tnull committed Sep 13, 2024
2 parents 6d8382b + 7c7b98b commit 1a6a2ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vss-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion src/io/vss_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
}

Expand Down

0 comments on commit 1a6a2ca

Please sign in to comment.