snark/user_command_verify_effectful/snark_user_command_verify_service.rs
1use ledger::scan_state::transaction_logic::{verifiable, WithStatus};
2
3use super::SnarkUserCommandVerifyId;
4
5pub trait SnarkUserCommandVerifyService: redux::Service {
6 fn verify_init(
7 &mut self,
8 req_id: SnarkUserCommandVerifyId,
9 commands: Vec<WithStatus<verifiable::UserCommand>>,
10 );
11}