bitcoin/blockdata/
mod.rs

1// Rust Bitcoin Library
2// Written in 2014 by
3//   Andrew Poelstra <apoelstra@wpsoftware.net>
4//
5// To the extent possible under law, the author(s) have dedicated all
6// copyright and related and neighboring rights to this software to
7// the public domain worldwide. This software is distributed without
8// any warranty.
9//
10// You should have received a copy of the CC0 Public Domain Dedication
11// along with this software.
12// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
13//
14
15//! Blockdata
16//!
17//! This module defines structions and functions for storing the blocks and
18//! transactions which make up the Bitcoin system.
19//!
20
21pub mod constants;
22pub mod opcodes;
23pub mod script;
24pub mod transaction;
25pub mod block;
26