Skip to content

Commit 78beec1

Browse files
committed
style: remove comments
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent fbdd328 commit 78beec1

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

tap_core/src/tap_manager/manager.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)