// SPDX-License-Identifier: CC0-1.0 //! Bitcoin block data. //! //! This module defines structures and functions for storing the blocks and //! transactions which make up the Bitcoin system. pub mod block; pub mod constants; pub mod script; pub mod transaction; pub mod witness; #[rustfmt::skip] // Keep public re-exports separate. #[doc(inline)] pub use self::{ fee_rate::FeeRate, weight::Weight }; /// Implements `FeeRate` and assoctiated features. pub mod fee_rate { /// Re-export everything from the [`units::fee_rate`] module. pub use units::fee_rate::FeeRate; } /// Provides absolute and relative locktimes. pub mod locktime { pub mod absolute { //! Provides type [`LockTime`] that implements the logic around nLockTime/OP_CHECKLOCKTIMEVERIFY. //! //! There are two types of lock time: lock-by-blockheight and lock-by-blocktime, distinguished by //! whether `LockTime < LOCKTIME_THRESHOLD`. use io::{BufRead, Write}; pub use crate::consensus::encode::{self, Decodable, Encodable}; /// Re-export everything from the `primitives::locktime::absolute` module. #[rustfmt::skip] // Keep public re-exports separate. pub use primitives::locktime::absolute::{ConversionError, Height, LockTime, ParseHeightError, ParseTimeError, Time}; impl Encodable for LockTime { #[inline] fn consensus_encode(&self, w: &mut W) -> Result { let v = self.to_consensus_u32(); v.consensus_encode(w) } } impl Decodable for LockTime { #[inline] fn consensus_decode(r: &mut R) -> Result { u32::consensus_decode(r).map(LockTime::from_consensus) } } } pub mod relative { //! Provides type [`LockTime`] that implements the logic around nSequence/OP_CHECKSEQUENCEVERIFY. //! //! There are two types of lock time: lock-by-blockheight and lock-by-blocktime, distinguished by //! whether bit 22 of the `u32` consensus value is set. /// Re-export everything from the `primitives::locktime::relative` module. pub use primitives::locktime::relative::{ DisabledLockTimeError, Height, IncompatibleHeightError, IncompatibleTimeError, LockTime, Time, TimeOverflowError, }; } } /// Bitcoin script opcodes. pub mod opcodes { /// Re-export everything from the [`primitives::opcodes`] module. pub use primitives::opcodes::*; } /// Implements `Weight` and associated features. pub mod weight { /// Re-export everything from the [`units::weight`] module. pub use units::weight::Weight; }