File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -39,18 +39,12 @@ where
3939 /// will complete all `required_checks` before being accepted or declined from RAV.
4040 /// `starting_min_timestamp` will be used as min timestamp until the first RAV request is created.
4141 ///
42- pub fn new (
43- domain_separator : Eip712Domain ,
44- executor : E ,
45- initial_checks : impl Into < Checks > ,
46- // finalize_checks: impl Into<Arc<[ReceiptCheck]>>,
47- ) -> Self {
42+ pub fn new ( domain_separator : Eip712Domain , executor : E , checks : impl Into < Checks > ) -> Self {
4843 let receipt_auditor = ReceiptAuditor :: new ( domain_separator, executor. clone ( ) ) ;
4944 Self {
5045 executor,
5146 receipt_auditor,
52- checks : initial_checks. into ( ) ,
53- // finalize_checks: finalize_checks.into(),
47+ checks : checks. into ( ) ,
5448 }
5549 }
5650}
You can’t perform that action at this time.
0 commit comments