feat: introduce cheatcode resetNetwork#382
Merged
MicaiahReid merged 2 commits intomainfrom Oct 22, 2025
Merged
Conversation
MicaiahReid
reviewed
Oct 22, 2025
Comment on lines
+656
to
+674
| let mut inner = LiteSVM::new() | ||
| .with_feature_set(self.feature_set.clone()) | ||
| .with_blockhash_check(false) | ||
| .with_sigverify(false); | ||
|
|
||
| // Add the native mint (SOL) to the SVM | ||
| create_native_mint(&mut inner); | ||
| let native_mint_account = inner | ||
| .get_account(&spl_token_interface::native_mint::ID) | ||
| .unwrap(); | ||
| let parsed_mint_account = MintAccount::unpack(&native_mint_account.data).unwrap(); | ||
|
|
||
| // Load native mint into owned account and token mint indexes | ||
| let accounts_by_owner = HashMap::from([( | ||
| native_mint_account.owner, | ||
| vec![spl_token_interface::native_mint::ID], | ||
| )]); | ||
| let token_mints = | ||
| HashMap::from([(spl_token_interface::native_mint::ID, parsed_mint_account)]); |
Collaborator
There was a problem hiding this comment.
Think it's worth putting this in a function that's used by both new/reset_network to DRY this up?
Collaborator
Author
There was a problem hiding this comment.
I thought about it, we already have a new and initialize functions, let's keep it in our visor and pull the trigger if it gets more complex?
MicaiahReid
approved these changes
Oct 22, 2025
Co-authored-by: Micaiah Reid <micaiahreid@gmail.com>
512c0b2 to
1178a9a
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.
No description provided.