librustzcash
librustzcash copied to clipboard
Rust-language assets for Zcash
Supports Electric-Coin-Company/zashi#35
Due to the `orchard` crate living in a separate repository, we currently have an annoying cyclic dependency between the two repositories, due to `zcash_primitives` depending on `orchard`, which depends on...
The AccountPrivKey struct is defined as: ```rs pub struct AccountPrivKey(ExtendedPrivKey); ``` This does not expose its one field. Yet, very similar to the #535 use case, I'm building up a...
Bumps [mio](https://github.com/tokio-rs/mio) from 0.8.9 to 0.8.11. Changelog Sourced from mio's changelog. 0.8.11 Fix receiving IOCP events after deregistering a Windows named pipe (tokio-rs/mio#1760, backport pr: tokio-rs/mio#1761). 0.8.10 Added Solaris support...
As download_sapling_parameters can be long running chiefly due to network I/O, it should be implemented asynchronously so as to avoid blocking a thread during its work. Low priority, perhaps. But...
````Rust pub fn scan_cached_blocks( params: &ParamsT, block_source: &BlockSourceT, data_db: &mut DbT, limit: Option, ) -> Result ```` ## Problem: scanning a full block can take many seconds on mobile (some...
The migrations ASCII art previously used was somewhat hard to read and much harder to maintain over time. Mermaid markdown provides a very easy way to add new nodes to...