Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Commit f628e0c

Browse files
committed
prune unnecessary sign
1 parent d949847 commit f628e0c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

testool/src/statetest/executor.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ pub fn run_test(
309309
);
310310

311311
// process the transaction
312-
let mut geth_data = eth_types::geth_types::GethData {
312+
let geth_data = eth_types::geth_types::GethData {
313313
chain_id: trace_config.chain_id,
314314
history_hashes: trace_config.history_hashes.clone(),
315315
geth_traces: geth_traces.clone(),
@@ -353,7 +353,8 @@ pub fn run_test(
353353
.copy_checks(None)
354354
.run();
355355
} else {
356-
geth_data.sign(&wallets);
356+
// we should have signed tx in into_traceconfig
357+
// geth_data.sign(&wallets);
357358

358359
let circuits_params = CircuitsParams {
359360
max_txs: MAX_TXS,

0 commit comments

Comments
 (0)