parity-zcash
parity-zcash copied to clipboard
A consensus-compatible Zcash node client written in Rust. 🦓
We should create a taxonomy of all of the types of keys used in Zebra (the type of key, its role in the protocol, where it's used, etc). This taxonomy...
Close this issue when the pre-Zebra-2 refactoring is planned and detailed in the form of crossreferenced GH issues under the 2.0.0 milestone.
Bumps [rand](https://github.com/rust-random/rand) from 0.4.6 to 0.6.5. Changelog *Sourced from [rand's changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md).* > ## [0.6.5] - 2019-01-28 > ### Crates > - Update `rand_core` to 0.4 ([#703](https://github-redirect.dependabot.com/rust-random/rand/issues/703)) > - Move `JitterRng`...
``` use `..=` for an inclusive range` note: #[warn(ellipsis_inclusive_range_patterns)] on by default ```
Bumps [quote](https://github.com/dtolnay/quote) from 0.3.15 to 1.0.1. Release notes *Sourced from [quote's releases](https://github.com/dtolnay/quote/releases).* > ## 1.0.1 > - Documentation improvements > > ## 1.0.0 > This release fixes some longstanding limitations...
This involves the following: 1. Creating a list of what features should be tested (i.e, what features we expect working for our first release). These features should be coarse-grained; i.e,...
Replace the only `unsafe` usage with appropriate syscall invocation for Config.block_notify_command
I am skeptical that using `unsafe` is the only way to achieve the equivalent operation, if we want to keep it. https://github.com/ZcashFoundation/zebra/blob/905c225996dbc9435221d5da5ffbf06d5bc00b19/zebra/commands/start.rs#L44
The logic here could be simplified using a tuple comparison. Also it's not required to duplicate logic between the `PartialOrd` and `Ord` impls, `Ord` is a marker trait. https://github.com/ZcashFoundation/zebra/blob/master/zebra-p2p/src/util/node_table.rs#L54-L92