Tests: Bump max compute to 120k

The Grant instruction could randomly exceed 110k, likely due to deriving
account addresses. That would cause random ci test failure occasionally.
This commit is contained in:
Christian Kamm 2022-02-14 09:09:11 +01:00
parent 37d6bed309
commit 4c5d896912
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ impl TestContext {
processor!(voter_stake_registry::entry),
);
// intentionally set to half the limit, to catch potential problems early
test.set_compute_max_units(110000);
test.set_compute_max_units(120000);
let governance_program_id =
Pubkey::from_str(&"GovernanceProgramTest1111111111111111111111").unwrap();