diff --git a/CHANGELOG.md b/CHANGELOG.md index 14b9edc6..0fa34c17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- Derive strict encoding for FundingTx (segwit v0) by @TheCharlatan + ([#320](https://github.com/farcaster-project/farcaster-core/pull/320/files)) + ## [0.6.2] - 2022-12-28 ### Added diff --git a/src/bitcoin/segwitv0/funding.rs b/src/bitcoin/segwitv0/funding.rs index f09b91a8..3dac1530 100644 --- a/src/bitcoin/segwitv0/funding.rs +++ b/src/bitcoin/segwitv0/funding.rs @@ -148,3 +148,5 @@ impl Decodable for Funding { }) } } + +impl_strict_encoding!(Funding);