From 8d602b87785bf3dd06e71c448b3986072a2016cf Mon Sep 17 00:00:00 2001 From: Tobin Harding Date: Tue, 29 Mar 2022 10:56:56 +1100 Subject: [PATCH] Fix deprecated since version We deprecated the `bip143::SigHashCache` in ``` commit 53d0e176d3c79c666cf75952f6f610fa37a105f5 Author: Date: Fri Jul 16 10:44:18 2021 +0200 Deprecate bip143::SigHashCache in favor of sighash::SigHashCache ... ``` This means these changes are unreleased so the deprecated since version should be the upcoming 0.28 release. --- src/util/bip143.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/bip143.rs b/src/util/bip143.rs index c238a5ec..ec4c3457 100644 --- a/src/util/bip143.rs +++ b/src/util/bip143.rs @@ -107,7 +107,7 @@ impl SighashComponents { } /// A replacement for SigHashComponents which supports all sighash modes -#[deprecated(since = "0.27.0", note = "please use [sighash::SigHashCache] instead")] +#[deprecated(since = "0.28.0", note = "please use [sighash::SigHashCache] instead")] pub struct SigHashCache> { cache: sighash::SigHashCache, }