Skip to content

Commit 0663dae

Browse files
committed
Use semvar-compliant version number
Clippy emits: error: the since field must contain a semver-compliant version As suggested, use a semvar-compliant version number.
1 parent 60da291 commit 0663dae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/psbt/finalizer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ fn interpreter_inp_check<C: secp256k1::Verification, T: Borrow<TxOut>>(
320320
/// finalized psbt which involves checking the signatures/ preimages/timelocks.
321321
/// The functions fails it is not possible to satisfy any of the inputs non-malleably
322322
/// See [finalize_mall] if you want to allow malleable satisfactions
323-
#[deprecated(since = "7.0", note = "Please use PsbtExt::finalize instead")]
323+
#[deprecated(since = "7.0.0", note = "Please use PsbtExt::finalize instead")]
324324
pub fn finalize<C: secp256k1::Verification>(
325325
psbt: &mut Psbt,
326326
secp: &Secp256k1<C>,

0 commit comments

Comments
 (0)