2022-06-29 04:05:31 +00:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2014-07-18 13:56:17 +00:00
|
|
|
|
2021-11-05 21:58:18 +00:00
|
|
|
//! Bitcoin block data.
|
2014-07-18 13:56:17 +00:00
|
|
|
//!
|
2019-02-04 06:30:41 +00:00
|
|
|
//! This module defines structures and functions for storing the blocks and
|
2014-07-18 13:56:17 +00:00
|
|
|
//! transactions which make up the Bitcoin system.
|
|
|
|
//!
|
|
|
|
|
2023-02-21 23:01:26 +00:00
|
|
|
pub mod block;
|
2014-07-18 13:56:17 +00:00
|
|
|
pub mod constants;
|
2023-02-21 23:01:26 +00:00
|
|
|
pub mod fee_rate;
|
2022-05-16 20:27:31 +00:00
|
|
|
pub mod locktime;
|
2014-07-18 13:56:17 +00:00
|
|
|
pub mod opcodes;
|
2018-03-09 20:30:11 +00:00
|
|
|
pub mod script;
|
2014-07-18 13:56:17 +00:00
|
|
|
pub mod transaction;
|
2023-02-06 20:01:48 +00:00
|
|
|
pub mod weight;
|
2023-02-21 23:01:26 +00:00
|
|
|
pub mod witness;
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
pub use fee_rate::FeeRate;
|
2023-02-21 23:01:26 +00:00
|
|
|
pub use weight::Weight;
|