-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This replaces the local script implementation with the one from the zcash_script crate. The `Script` type that was here is replaced by a family of three types - `script::PubKey`; - `script::Sig<PushValue>` – a v5+ script_sig, used for new sigs; - `script::Sig<Opcode>` – a pre-v5 script\_sig, used for sigs read off the chain, which may predate NU5; and - an unwrapped `Vec<u8>` for script code. This uses a number of zcash_script features that haven’t yet made it into the master branch, let alone a release, so this should not be merged.
- Loading branch information
Showing
27 changed files
with
407 additions
and
595 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.