Skip to content

Commit e8c2601

Browse files
committed
Merge rust-bitcoin#5031: psbt: correct typo in consensus deserialization error message
f9ef8c5 psbt: correct typo in consensus deserialization error message (sent deed) Pull request description: bitcoin/src/psbt/error.rs:typo fix in `Display` output of `Error` *LLM slop deleted by apoelstra* ACKs for top commit: apoelstra: ACK f9ef8c5; successfully ran local tests Tree-SHA512: 605903f271fc0f49d3f366872727d0b93131b15e1d01d792cf6181b80acba4917ff1c1d4a6d7691ff37177e6ccceec913da7da0b28c7a0c0eb4a204810ce4743
2 parents ff3f606 + f9ef8c5 commit e8c2601

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitcoin/src/psbt/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ impl fmt::Display for Error {
159159
}
160160
ConsensusEncoding(ref e) => write_err!(f, "bitcoin consensus encoding error"; e),
161161
ConsensusDeserialize(ref e) =>
162-
write_err!(f, "bitcoin consensus deserializaton error"; e),
162+
write_err!(f, "bitcoin consensus deserialization error"; e),
163163
ConsensusParse(ref e) =>
164164
write_err!(f, "error parsing bitcoin consensus encoded object"; e),
165165
NegativeFee => f.write_str("PSBT has a negative fee which is not allowed"),

0 commit comments

Comments
 (0)