Skip to content

Commit 7f46459

Browse files
committed
Revert format
1 parent 624b071 commit 7f46459

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

program/rust/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
mod c_oracle_header;
2+
mod time_machine_types;
23
mod error;
34
mod log;
4-
mod time_machine_types;
55

66
use crate::log::{post_log, pre_log};
77
use solana_program::entrypoint::deserialize;
@@ -40,7 +40,7 @@ pub extern "C" fn c_entrypoint(input: *mut u8) -> u64 {
4040
pub extern "C" fn entrypoint(input: *mut u8) -> u64 {
4141
let (_program_id, accounts, instruction_data) = unsafe { deserialize(input) };
4242

43-
match pre_log(&accounts, instruction_data) {
43+
match pre_log(&accounts,instruction_data) {
4444
Err(error) => return error.into(),
4545
_ => {}
4646
}

0 commit comments

Comments
 (0)