pub trait ParameterDifficulty {
// Required method
fn target_difficulty_limit(&self) -> ExpandedDifficulty;
}Expand description
Network methods related to Difficulty
Required Methods§
Sourcefn target_difficulty_limit(&self) -> ExpandedDifficulty
fn target_difficulty_limit(&self) -> ExpandedDifficulty
Returns the easiest target difficulty allowed on network.
§Consensus
See PoWLimit in the Zcash specification:
https://zips.z.cash/protocol/protocol.pdf#constants
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".