-
Notifications
You must be signed in to change notification settings - Fork 1.5k
[Feat] Implement RejectedReason
#3159
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
base: staging
Are you sure you want to change the base?
Changes from 10 commits
0b121fa
cc3a72b
2bccbcf
26f517c
53a1824
21076fc
bff20aa
012cf0d
990183e
55cebf7
7688c0b
ca9b3c0
70bb92e
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 | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -19,6 +19,9 @@ pub use confirmed::*; | |||||||
| pub mod rejected; | ||||||||
| pub use rejected::*; | ||||||||
|
|
||||||||
| pub mod rejected_reason; | ||||||||
| pub use rejected_reason::*; | ||||||||
|
|
||||||||
| mod bytes; | ||||||||
| mod merkle; | ||||||||
| mod serialize; | ||||||||
|
|
@@ -31,6 +34,8 @@ use console::{ | |||||||
| Ciphertext, | ||||||||
| FINALIZE_ID_DEPTH, | ||||||||
| FINALIZE_OPERATIONS_DEPTH, | ||||||||
| Identifier, | ||||||||
| ProgramID, | ||||||||
|
Comment on lines
+37
to
+38
|
||||||||
| Identifier, | |
| ProgramID, |
Copilot
AI
Mar 23, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These imports (IndexedFinalizeError, Command) appear unused in this module. Consider removing them to avoid unused-import warnings.
| use snarkvm_synthesizer_error::IndexedFinalizeError; | |
| use snarkvm_synthesizer_program::{Command, FinalizeOperation}; | |
| use snarkvm_synthesizer_program::FinalizeOperation; |
Uh oh!
There was an error while loading. Please reload this page.