From 1edc5f40981dfa3d007d06f37b4502024d3e4303 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 27 Jul 2023 07:26:21 +1000 Subject: [PATCH] Fill in deprecated since NEXT-RELEASE placeholder As we gear up for the v0.31.0 release we can fill in the NEXT-RELEASE placeholders. --- bitcoin/src/blockdata/transaction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/blockdata/transaction.rs b/bitcoin/src/blockdata/transaction.rs index 6a1a2108..88326540 100644 --- a/bitcoin/src/blockdata/transaction.rs +++ b/bitcoin/src/blockdata/transaction.rs @@ -941,7 +941,7 @@ impl Transaction { } /// Checks if this is a coinbase transaction. - #[deprecated(since = "0.0.0-NEXT-RELEASE", note = "use is_coinbase instead")] + #[deprecated(since = "0.31.0", note = "use is_coinbase instead")] pub fn is_coin_base(&self) -> bool { self.is_coinbase() } /// Returns `true` if the transaction itself opted in to be BIP-125-replaceable (RBF).