Skip to content

Commit dffc921

Browse files
committed
Update to later version of spark-wallet to fix bindings
1 parent a05dbeb commit dffc921

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

orange-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bitcoin-payment-instructions = { workspace = true }
2323
chrono = { version = "0.4", default-features = false }
2424
rand = { version = "0.8.5", optional = true }
2525
reqwest = { version = "0.12.23", default-features = false, features = ["rustls-tls"] }
26-
spark-wallet = { git = "https://github.com/breez/spark-sdk.git", rev = "9e38cbf8fc21ea74a0bbbb805311155acbffce9c", optional = true }
26+
spark-wallet = { git = "https://github.com/breez/spark-sdk.git", rev = "47986e0ebaa7a1522ed21d0a82cea92b0d8342e4", default-features = false, features = ["rustls-tls"], optional = true }
2727
tokio = { version = "1.0", default-features = false, features = ["rt-multi-thread", "sync"] }
2828
uuid = { version = "1.0", default-features = false, optional = true }
2929
cdk = { git = "https://github.com/benthecarman/cdk.git", branch = "orange-fork", default-features = false, features = ["wallet"], optional = true }

orange-sdk/src/trusted_wallet/spark.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ impl Spark {
536536
},
537537
p = spark_wallet.fetch_lightning_send_payment(&spark_id) => {
538538
if let Ok(Some(p)) = p {
539-
let status: TxStatus = p.status.clone().into();
539+
let status: TxStatus = p.status.into();
540540
match status {
541541
TxStatus::Pending => {
542542
// do nothing / wait

0 commit comments

Comments
 (0)