From 3705175093c0aebed0bdcfc81949bb2d7e0786c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Granh=C3=A3o?= Date: Thu, 12 Dec 2024 15:15:56 +0000 Subject: [PATCH] Default external parsers config to null --- lib/Cargo.lock | 2 +- lib/bindings/src/breez_sdk_liquid.udl | 2 +- lib/core/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Cargo.lock b/lib/Cargo.lock index b6d553747..2029f6971 100644 --- a/lib/Cargo.lock +++ b/lib/Cargo.lock @@ -3294,7 +3294,7 @@ dependencies = [ [[package]] name = "sdk-common" version = "0.6.2" -source = "git+https://github.com/breez/breez-sdk?rev=238245bd34be15727493d7d0c625c6ae55f2a845#238245bd34be15727493d7d0c625c6ae55f2a845" +source = "git+https://github.com/breez/breez-sdk?rev=e537feb8ed134bc3c7af5196e10a0a189dd36ac7#e537feb8ed134bc3c7af5196e10a0a189dd36ac7" dependencies = [ "aes 0.8.4", "anyhow", diff --git a/lib/bindings/src/breez_sdk_liquid.udl b/lib/bindings/src/breez_sdk_liquid.udl index 747ef8f7e..a06e7ee65 100644 --- a/lib/bindings/src/breez_sdk_liquid.udl +++ b/lib/bindings/src/breez_sdk_liquid.udl @@ -335,7 +335,7 @@ dictionary Config { string? breez_api_key; string? cache_dir; u64? zero_conf_max_amount_sat; - sequence? external_input_parsers; + sequence? external_input_parsers = null; }; enum LiquidNetwork { diff --git a/lib/core/Cargo.toml b/lib/core/Cargo.toml index a9829e92f..9c1e1c132 100644 --- a/lib/core/Cargo.toml +++ b/lib/core/Cargo.toml @@ -32,7 +32,7 @@ lwk_wollet = { git = "https://github.com/dangeross/lwk", branch = "savage-full-s #lwk_wollet = "0.7.0" rusqlite = { version = "0.31", features = ["backup", "bundled"] } rusqlite_migration = "1.0" -sdk-common = { git = "https://github.com/breez/breez-sdk", rev = "238245bd34be15727493d7d0c625c6ae55f2a845", features = ["liquid"] } +sdk-common = { git = "https://github.com/breez/breez-sdk", rev = "e537feb8ed134bc3c7af5196e10a0a189dd36ac7", features = ["liquid"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.116" strum = "0.25"