diff --git a/artifacts/test_program_methods/clock_chain_caller.bin b/artifacts/test_program_methods/clock_chain_caller.bin index d836f2c9..238225e4 100644 Binary files a/artifacts/test_program_methods/clock_chain_caller.bin and b/artifacts/test_program_methods/clock_chain_caller.bin differ diff --git a/test_program_methods/guest/src/bin/clock_chain_caller.rs b/test_program_methods/guest/src/bin/clock_chain_caller.rs index c6b2d386..582e228e 100644 --- a/test_program_methods/guest/src/bin/clock_chain_caller.rs +++ b/test_program_methods/guest/src/bin/clock_chain_caller.rs @@ -1,9 +1,12 @@ -use nssa_core::program::{ - AccountPostState, ChainedCall, ProgramId, ProgramInput, ProgramOutput, read_nssa_inputs, +use nssa_core::{ + Timestamp, + program::{ + AccountPostState, ChainedCall, ProgramId, ProgramInput, ProgramOutput, read_nssa_inputs, + }, }; use risc0_zkvm::serde::to_vec; -type Instruction = (ProgramId, u64); // (clock_program_id, timestamp) +type Instruction = (ProgramId, Timestamp); // (clock_program_id, timestamp) /// A program that chain-calls the clock program with the clock accounts it received as pre-states. /// Used in tests to verify that user transactions cannot modify clock accounts, even indirectly