From 26497cfedb477b132d871a9eabdeaf98938f975a Mon Sep 17 00:00:00 2001 From: gabrielbosio Date: Wed, 25 Sep 2024 18:35:15 -0300 Subject: [PATCH] Fix proving system match --- batcher/aligned/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/batcher/aligned/src/main.rs b/batcher/aligned/src/main.rs index 8030be2a5..294cac6c8 100644 --- a/batcher/aligned/src/main.rs +++ b/batcher/aligned/src/main.rs @@ -624,13 +624,13 @@ fn verification_data_from_args(args: &SubmitArgs) -> Result { pub_input = Some(read_file_option( "--public_input", - args.pub_input_file_name, + args.pub_input_file_name.clone(), )?) } ProvingSystemId::MinaAccount => { pub_input = Some(read_file_option( "--public_input", - args.pub_input_file_name, + args.pub_input_file_name.clone(), )?) } }