1
2
3
4
5
6
7
8
//! Validate coinbase transaction rewards as described in [ยง7.8][7.8]
//!
//! [7.8]: https://zips.z.cash/protocol/protocol.pdf#subsidies

/// Funding Streams functions apply for blocks at and after Canopy.
pub mod funding_streams;
/// General subsidy functions apply for blocks after slow-start mining.
pub mod general;