Skip to content

Commit 911e6b5

Browse files
committed
fix: temporary suppress big Err warnings
To be reverted when zksync-error supports boxing fields
1 parent 5be6bdd commit 911e6b5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

crates/core/src/node/inner/time.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ impl Time {
6464
diff
6565
}
6666

67+
// FIXME: to be removed soon when zksync-error supports boxed types better
68+
#[allow(clippy::result_large_err)]
6769
/// Forces clock to return provided value as the next timestamp. Time skip will not be performed
6870
/// before the next invocation of `advance_timestamp`.
6971
///

crates/core/src/node/inner/vm_runner.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ impl VmRunner {
108108
}
109109
}
110110

111+
// FIXME: to be removed soon when zksync-error supports boxed types better
112+
#[allow(clippy::result_large_err)]
111113
/// Validates L2 transaction
112114
fn validate_tx(
113115
&self,

0 commit comments

Comments
 (0)