2022-06-29 04:05:31 +00:00
|
|
|
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
|
|
|
// 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.
|
|
|
|
//!
|
|
|
|
|
|
|
|
pub mod constants;
|
|
|
|
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;
|
2021-10-05 13:07:55 +00:00
|
|
|
pub mod witness;
|
2014-07-18 13:56:17 +00:00
|
|
|
|