From 238245bd34be15727493d7d0c625c6ae55f2a845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Granh=C3=A3o?= Date: Thu, 12 Dec 2024 11:28:10 +0000 Subject: [PATCH] Derive `Serialize` for `ExternalInputParser` --- libs/sdk-common/src/input_parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/sdk-common/src/input_parser.rs b/libs/sdk-common/src/input_parser.rs index 343629c0d..ae6f64370 100644 --- a/libs/sdk-common/src/input_parser.rs +++ b/libs/sdk-common/src/input_parser.rs @@ -767,7 +767,7 @@ impl From> for BitcoinAddressData { } /// Configuration for an external input parser -#[derive(Debug, Clone)] +#[derive(Debug, Clone, Serialize)] pub struct ExternalInputParser { /// An arbitrary parser provider id pub provider_id: String,