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 715a55b commit 8410e80Copy full SHA for 8410e80
program/rust/src/lib.rs
@@ -1,4 +1,5 @@
1
mod c_oracle_header;
2
+mod time_machine_types;
3
mod error;
4
mod log;
5
mod processor;
@@ -67,7 +68,7 @@ pub fn c_entrypoint_wrapper(input: *mut u8) -> OracleResult {
67
68
pub extern "C" fn entrypoint(input: *mut u8) -> u64 {
69
let (program_id, accounts, instruction_data) = unsafe { deserialize(input) };
70
- match pre_log(&accounts, instruction_data) {
71
+ match pre_log(&accounts,instruction_data) {
72
Err(error) => return error.into(),
73
_ => {}
74
}
0 commit comments