We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 624b071 commit 7f46459Copy full SHA for 7f46459
program/rust/src/lib.rs
@@ -1,7 +1,7 @@
1
mod c_oracle_header;
2
+mod time_machine_types;
3
mod error;
4
mod log;
-mod time_machine_types;
5
6
use crate::log::{post_log, pre_log};
7
use solana_program::entrypoint::deserialize;
@@ -40,7 +40,7 @@ pub extern "C" fn c_entrypoint(input: *mut u8) -> u64 {
40
pub extern "C" fn entrypoint(input: *mut u8) -> u64 {
41
let (_program_id, accounts, instruction_data) = unsafe { deserialize(input) };
42
43
- match pre_log(&accounts, instruction_data) {
+ match pre_log(&accounts,instruction_data) {
44
Err(error) => return error.into(),
45
_ => {}
46
}
0 commit comments