-
Notifications
You must be signed in to change notification settings - Fork 1
Update orchard crate dependency #93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
84ef71f
5fb13fa
3eecea1
b43be54
083a1e7
00b0b2b
76ad0f0
120c4fd
74681df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,7 +58,7 @@ const V5_VERSION_GROUP_ID: u32 = 0x26A7270A; | |
| #[cfg(zcash_unstable = "nu6" /* TODO nu7 */ )] | ||
| const V6_TX_VERSION: u32 = 6; | ||
| #[cfg(zcash_unstable = "nu6" /* TODO nu7 */ )] | ||
| const V6_VERSION_GROUP_ID: u32 = 0x124A69F8; // TODO ??? | ||
| const V6_VERSION_GROUP_ID: u32 = 0x77777777; // TODO ??? | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. still todo?
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we have values for V6 anywhere? Anyway this one is consistent with python so I suggest to merge as is and probably create new PR with final values when we have them |
||
|
|
||
| /// These versions are used exclusively for in-development transaction | ||
| /// serialization, and will never be active under the consensus rules. | ||
|
|
@@ -338,12 +338,10 @@ impl Authorization for Unauthorized { | |
| type TransparentAuth = transparent::builder::Unauthorized; | ||
| type SaplingAuth = | ||
| sapling_builder::InProgress<sapling_builder::Proven, sapling_builder::Unsigned>; | ||
| type OrchardAuth = | ||
| orchard::builder::InProgress<Unproven<OrchardVanilla>, orchard::builder::Unauthorized>; | ||
| type OrchardAuth = orchard::builder::InProgress<Unproven, orchard::builder::Unauthorized>; | ||
|
|
||
| #[cfg(zcash_unstable = "nu6" /* TODO nu7 */ )] | ||
| type OrchardZsaAuth = | ||
| orchard::builder::InProgress<Unproven<OrchardZSA>, orchard::builder::Unauthorized>; | ||
| type OrchardZsaAuth = orchard::builder::InProgress<Unproven, orchard::builder::Unauthorized>; | ||
|
|
||
| #[cfg(zcash_unstable = "nu6" /* TODO nu7 */ )] | ||
| type IssueAuth = orchard::issuance::Unauthorized; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.