From e768c92ce3e6b3ec06147ec791e8d0dcf06cd05e Mon Sep 17 00:00:00 2001 From: Fmt Bot Date: Sun, 14 Jan 2024 01:00:10 +0000 Subject: [PATCH] 2024-01-14 automated rustfmt nightly --- bitcoin/src/blockdata/script/borrowed.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bitcoin/src/blockdata/script/borrowed.rs b/bitcoin/src/blockdata/script/borrowed.rs index a052e428..b7724b69 100644 --- a/bitcoin/src/blockdata/script/borrowed.rs +++ b/bitcoin/src/blockdata/script/borrowed.rs @@ -357,7 +357,10 @@ impl Script { /// /// This method has potentially confusing semantics and an unclear purpose, so it's going to be /// removed. Use `is_op_return` if you want `OP_RETURN` semantics. - #[deprecated(since = "TBD", note = "The method is not very useful, you might want `is_op_return`")] + #[deprecated( + since = "TBD", + note = "The method is not very useful, you might want `is_op_return`" + )] #[inline] pub fn is_provably_unspendable(&self) -> bool { use crate::blockdata::opcodes::Class::{IllegalOp, ReturnOp};