From ca82dc8b67c579e47a98bc53399b53b27b8c7c12 Mon Sep 17 00:00:00 2001 From: Vladimir Motylenko Date: Tue, 10 Jan 2023 16:05:59 +0200 Subject: [PATCH] Fix(ledger-tool): evm storage path --- ledger-tool/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledger-tool/src/main.rs b/ledger-tool/src/main.rs index 6dd7f46cb1..2c22fbef3e 100644 --- a/ledger-tool/src/main.rs +++ b/ledger-tool/src/main.rs @@ -1676,7 +1676,7 @@ fn main() { evm_blockstore_process_command(&ledger_path, arg_matches) } ("evm_state", Some(arg_matches)) => { - process_evm_state_command(&ledger_path, arg_matches) + process_evm_state_command(&evm_state_path, arg_matches) .unwrap_or_else(|err| panic!("EVM state subcommand error: {:?}", err)); } ("print", Some(arg_matches)) => {