From ab4e6d6f27ce198b983d349ed5a4a2c7c1904c05 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 24 May 2023 22:10:40 +1000 Subject: [PATCH] psbt: Remove reexport of Prevouts No idea why this re-export is here, the `Prevouts` type is not even used in the `psbt` module. Remove the re-export of `crate::sighash::Prevouts` from `pstb`. --- bitcoin/src/psbt/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/bitcoin/src/psbt/mod.rs b/bitcoin/src/psbt/mod.rs index df13ca55..2233f8d5 100644 --- a/bitcoin/src/psbt/mod.rs +++ b/bitcoin/src/psbt/mod.rs @@ -20,7 +20,6 @@ use crate::blockdata::transaction::{Transaction, TxOut}; use crate::crypto::ecdsa; use crate::crypto::key::{PrivateKey, PublicKey}; use crate::prelude::*; -pub use crate::sighash::Prevouts; use crate::sighash::{self, EcdsaSighashType, SighashCache}; use crate::Amount;