blvm-consensus 0.1.21

Bitcoin Commons BLVM: Direct mathematical implementation of Bitcoin consensus rules from the Orange Paper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! consensus Test Vector Integration
//!
//! Integrates consensus's test vectors to provide free verification coverage.
//! Test vectors are extracted from consensus's test suite and used to verify
//! consensus correctness.
//!
//! Source: consensus test data (`bitcoin/src/test/data/*.json`)

mod block_tests;
mod transaction_tests;
mod integration_test;

pub use block_tests::*;
pub use transaction_tests::*;