rust-bitcoin-unsafe-fast/bitcoin/src/blockdata/mod.rs

17 lines
385 B
Rust
Raw Normal View History

// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
// SPDX-License-Identifier: CC0-1.0
2014-07-18 13:56:17 +00:00
//! Bitcoin block data.
2014-07-18 13:56:17 +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.
//!
pub mod constants;
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;
pub mod block;
pub mod witness;