Fixup missed instances of SanitizedTransaction::try_create() (#32013)

The function signature was changed in #31767, but these instances were
not updated due to the PR being created before the instances were added
to the repo.
This commit is contained in:
steviez 2023-06-07 11:39:51 -05:00 committed by GitHub
parent 68b843860d
commit 334216acf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -327,7 +327,6 @@ mod tests {
MessageHash::Compute,
None,
SimpleAddressLoader::Disabled,
true, // require_static_program_ids
)
.unwrap();
assert!(vote_transaction.is_simple_vote_transaction());
@ -340,7 +339,6 @@ mod tests {
MessageHash::Compute,
Some(false),
SimpleAddressLoader::Disabled,
true, // require_static_program_ids
)
.unwrap();
assert!(!vote_transaction.is_simple_vote_transaction());
@ -355,7 +353,6 @@ mod tests {
MessageHash::Compute,
None,
SimpleAddressLoader::Disabled,
true, // require_static_program_ids
)
.unwrap();
assert!(!vote_transaction.is_simple_vote_transaction());
@ -368,7 +365,6 @@ mod tests {
MessageHash::Compute,
Some(true),
SimpleAddressLoader::Disabled,
true, // require_static_program_ids
)
.unwrap();
assert!(vote_transaction.is_simple_vote_transaction());