-
Notifications
You must be signed in to change notification settings - Fork 331
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
feat: disable account rent epoch updates #4593
base: master
Are you sure you want to change the base?
Conversation
@@ -4003,7 +4003,7 @@ fn test_program_sbf_inner_instruction_alignment_checks() { | |||
.. | |||
} = create_genesis_config(50); | |||
let (bank, bank_forks) = Bank::new_with_bank_forks_for_tests(&genesis_config); | |||
let noop = create_program(&bank, &bpf_loader_deprecated::id(), "solana_sbf_rust_noop"); | |||
let noop = create_program(&bank, &bpf_loader::id(), "solana_sbf_rust_noop"); |
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.
Wild.. this change uncovered a really old buggy test where we serializing unaligned account info data and deserializing it as aligned 😮
This PR contains changes to the solana sdk, which will be moved to a new repo within the next week, when v2.2 is branched from master. Please merge or close this PR as soon as possible, or re-create the sdk changes when the new repository is ready at https://github.com/anza-xyz/solana-sdk |
Problem
Summary of Changes
Fixes #