From 8c5c4c6aa57db33030096fe7de90cb0adeabab2f Mon Sep 17 00:00:00 2001 From: brock elmore Date: Thu, 7 Dec 2023 12:17:35 -0800 Subject: [PATCH] lint --- crates/evm/evm/src/executors/invariant/error.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/evm/evm/src/executors/invariant/error.rs b/crates/evm/evm/src/executors/invariant/error.rs index c8034f13b5d0..f0f476f8adcc 100644 --- a/crates/evm/evm/src/executors/invariant/error.rs +++ b/crates/evm/evm/src/executors/invariant/error.rs @@ -341,8 +341,9 @@ impl InvariantFuzzError { ); }); - // SAFETY: there are no more live references to shrunk_call_indices as the parallel execution is - // finished, so it is fine to get the inner value via unwrap & into_inner + // SAFETY: there are no more live references to shrunk_call_indices as the parallel + // execution is finished, so it is fine to get the inner value via unwrap & + // into_inner let shrunk_call_indices = Arc::>>::try_unwrap(shrunk_call_indices).unwrap().into_inner();