Jack Grigg

Results 533 issues of Jack Grigg

#1550 exposes TDR details more fully, and `requestAt` is now visible to the SDK side. For now, requests with explicit request times are ignored; they should instead be scheduled correctly...

Currently when parsing e.g. a Sapling diversifiable IVK from a UIVK, we check that the `ivk` portion is canonical, but it may be zero: https://github.com/zcash/sapling-crypto/blob/6a8282be0959b410a0b622cd5eb84f8c3c134078/src/zip32.rs#L850-L860 The protocol spec requires that...

As added to the age specification in https://github.com/C2SP/C2SP/pull/156.

https://github.com/ZcashFoundation/zebra/blob/6032c32124eba4dc2d0b2506a43834dd0c04412f/zebra-rpc/src/methods/trees.rs#L189-L200 These fields are documented as "hex-encoded", which is misleading. When `Commitments` is serialized as a whole using `serde_json`, the resulting fields are hex-encoded, but the actual Rust fields store...

C-documentation
external contribution

TODO: Finish writing the initial draft by filling out the TODOs. Fixes #693

ZIP number assigned

To enable P2SH multisig addresses to pay shielded recipients, while retaining view capability into the outputs, we need a way to derive an external OVK from the ZIP 48 account...

ZIP 0 currently says: > - Proposed: Typically the stage after Draft, added to a ZIP after consideration, feedback, and rough consensus from the community. > - Implemented: When a...

I'm encountering a problem where I can connect to a server fine with `tokio-tungstenite` and maintain that connection, but at some point the stream gets reset (presumably due to load...

enhancement

The current component sorting logic is based on an `impl PartialOrd for Box`, which sorts based on whether two components depend on each other or not. However, this causes a...

One of the things I'm having trouble figuring out is how components fit into the overall application lifecycle. After lots of digging into the code, I *think* the application lifecycle...