Skip to content

Commit

Permalink
fix!(wallet): ChangeSet should not be non-exhaustive
Browse files Browse the repository at this point in the history
As stated in #1591, it is handy to know when new values are added to
`ChangeSet`.
  • Loading branch information
evanlinjin committed Sep 26, 2024
1 parent 2cf46a2 commit d7dfe38
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/wallet/src/wallet/changeset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Descriptor<DescriptorPublicKey>>,
Expand Down

0 comments on commit d7dfe38

Please sign in to comment.