Fuzztesting (v2) - #135
Open
ikripaka wants to merge 9 commits into
Open
Conversation
ikripaka
force-pushed
the
feat/fuzztest
branch
from
August 25, 2026 14:44
8134082 to
d0bb288
Compare
ikripaka
marked this pull request as ready for review
August 26, 2026 08:37
ikripaka
force-pushed
the
feat/fuzztest
branch
2 times, most recently
from
August 27, 2026 07:48
4ec712f to
b333eed
Compare
Arvolear
reviewed
Aug 27, 2026
Arvolear
reviewed
Aug 27, 2026
| pub(crate) fn prepare_transaction( | ||
| &self, | ||
| program: &Program, | ||
| script: &Script, |
Member
There was a problem hiding this comment.
Why do you need script when there is program.get_script_pubkey()?
Collaborator
Author
There was a problem hiding this comment.
Yeah, but it requires a SimplicityNetwork, which I retrieve from the config, so I need to insert it before invoking it.
pub fn get_script_pubkey(&self, network: &SimplicityNetwork) -> Script {
Arvolear
reviewed
Aug 27, 2026
Arvolear
reviewed
Aug 27, 2026
Arvolear
reviewed
Aug 27, 2026
* add randomness implementation * add fuzz macro implementation * add fuzzing impelmentation, which can generate arguments and witness to inject values into program * edit interface for program creation (we have Into<Arguments> and Into<WitnessValues> instead of Box<dyn ...>) * extend ui tests to include randomness * continue work onto this pr from b2c4bfd to simplify rebasing
ikripaka
force-pushed
the
feat/fuzztest
branch
from
August 27, 2026 20:31
909836d to
4b6916f
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
justfile for simplifying local checksCloses #90