Skip to content

Commit fff85c8

Browse files
committed
Fix compiler issue
1 parent fdb8038 commit fff85c8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

executor/wasm/tests/ee_966.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
use std::sync::Arc;
2-
31
use bytes::Bytes;
42
use casper_execution_engine::engine_state::ExecutionEngineV1;
53
use casper_executor_wasm::{
@@ -74,7 +72,7 @@ fn argument_size_exceeds_memory_limit() {
7472
.with_message_limits(MessageLimits::default())
7573
.build()
7674
.expect("Should build");
77-
ExecutorV2::new(executor_config, Arc::new(execution_engine_v1))
75+
ExecutorV2::new(executor_config, execution_engine_v1)
7876
};
7977
let (global_state, state_root_hash, _tempdir) = make_global_state_with_genesis();
8078
let address_generator = make_address_generator();

0 commit comments

Comments
 (0)