Skip to content

Commit

Permalink
psbt: remove uneeded prefix before TryFrom impl
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jun 8, 2024
1 parent 4c7ceec commit 2e3c1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psbt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl PsbtVer {
}
}

impl std::convert::TryFrom<usize> for PsbtVer {
impl TryFrom<usize> for PsbtVer {
type Error = PsbtUnsupportedVer;

fn try_from(value: usize) -> Result<Self, Self::Error> {
Expand Down

0 comments on commit 2e3c1d1

Please sign in to comment.