Skip to content

Commit 04d775c

Browse files
committed
fix: compilation
1 parent 4f7f745 commit 04d775c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

magicblock-committor-service/src/intent_executor/error.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,8 @@ impl TransactionStrategyExecutionError {
236236
let tx_err_helper = |instruction_err| -> TransactionError {
237237
TransactionError::InstructionError(index, instruction_err)
238238
};
239-
let Some(action_index) = index.checked_sub(Self::TASK_OFFSET) else {
239+
let Some(action_index) = index.checked_sub(Self::TASK_OFFSET)
240+
else {
240241
return Err(tx_err_helper(instruction_err));
241242
};
242243

magicblock-committor-service/src/intent_executor/single_stage_executor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::ops::ControlFlow;
22

33
use log::error;
44
use solana_pubkey::Pubkey;
5-
use solana_sdk::signature::Signature;
5+
use solana_signature::Signature;
66

77
use crate::{
88
intent_executor::{

test-integration/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)