From d375396fbc6f0d2c883972ce75d24db4c92d3726 Mon Sep 17 00:00:00 2001 From: Ava Chow Date: Tue, 21 Jan 2025 13:15:16 -0500 Subject: [PATCH] fixup! psbt: Implement un/ser of musig2 fields --- src/psbt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/psbt.h b/src/psbt.h index d0dd3b9ceef6f7..ff498e137e7c22 100644 --- a/src/psbt.h +++ b/src/psbt.h @@ -739,7 +739,7 @@ struct PSBTInput participants.emplace_back(Span{part_key_bytes}); } if (!s_val.empty()) { - throw std::ios_base::failure("Input musig2 particiapnts pubkeys value size is not a multiple of 33") + throw std::ios_base::failure("Input musig2 particiapnts pubkeys value size is not a multiple of 33"); } m_musig2_participants.emplace(agg_key, participants); @@ -1063,7 +1063,7 @@ struct PSBTOutput participants.emplace_back(Span{part_key_bytes}); } if (!s_val.empty()) { - throw std::ios_base::failure("Input musig2 particiapnts pubkeys value size is not a multiple of 33") + throw std::ios_base::failure("Input musig2 particiapnts pubkeys value size is not a multiple of 33"); } m_musig2_participants.emplace(agg_key, participants);