// Written in 2014 by Andrew Poelstra // 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 constants; pub mod opcodes; pub mod script; pub mod transaction; pub mod block; pub mod witness;