From d7dfe38ff6c0f1b984e15defc83c79e52a44afa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BF=97=E5=AE=87?= Date: Thu, 26 Sep 2024 16:28:38 +0800 Subject: [PATCH] fix!(wallet): `ChangeSet` should not be non-exhaustive As stated in #1591, it is handy to know when new values are added to `ChangeSet`. --- crates/wallet/src/wallet/changeset.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/wallet/src/wallet/changeset.rs b/crates/wallet/src/wallet/changeset.rs index 2d4b700ed..9c75a289d 100644 --- a/crates/wallet/src/wallet/changeset.rs +++ b/crates/wallet/src/wallet/changeset.rs @@ -8,7 +8,6 @@ type IndexedTxGraphChangeSet = /// A changeset for [`Wallet`](crate::Wallet). #[derive(Default, Debug, Clone, PartialEq, serde::Deserialize, serde::Serialize)] -#[non_exhaustive] pub struct ChangeSet { /// Descriptor for recipient addresses. pub descriptor: Option>,