Skip to content

Commit

Permalink
pass checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ebatsell committed Apr 9, 2024
1 parent d4bf6ca commit 29875e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion keepers/keeper-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ pub async fn parallel_execute_instructions(
for tx in transactions.iter_mut() {
tx.insert(
0,
ComputeBudgetInstruction::set_compute_unit_price(microlamports).into(),
ComputeBudgetInstruction::set_compute_unit_price(microlamports),
);
}
let transactions: Vec<&[Instruction]> = transactions.iter().map(|c| c.as_slice()).collect();
Expand Down
2 changes: 1 addition & 1 deletion keepers/validator-keeper/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub mod vote_account;

pub type Error = Box<dyn std::error::Error>;

pub const PRIORITY_FEE: u64 = 1_000_000;
pub const PRIORITY_FEE: u64 = 500_000;

#[derive(ThisError, Debug)]
pub enum KeeperError {
Expand Down

0 comments on commit 29875e5

Please sign in to comment.