From 97a6246b6fb4fc465ad473531ac4111d396a12fb Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 19 Jul 2023 20:01:01 +0000 Subject: [PATCH] Move `ClaimId` to `[u8; 32]` in bindings. This matches what we've done for other `[u8; 32]` newtypes. --- lightning/src/chain/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lightning/src/chain/mod.rs b/lightning/src/chain/mod.rs index a32bcb29..236b10a7 100644 --- a/lightning/src/chain/mod.rs +++ b/lightning/src/chain/mod.rs @@ -391,5 +391,7 @@ where } /// A unique identifier to track each pending output claim within a [`ChannelMonitor`]. +/// +/// This is not exported to bindings users as we just use [u8; 32] directly. #[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)] pub struct ClaimId(pub [u8; 32]); -- 2.30.2