This repository was archived by the owner on Feb 17, 2025. It is now read-only.
Commit ce710d1 1 parent 5edca1d commit ce710d1 Copy full SHA for ce710d1
File tree 3 files changed +3
-3
lines changed
include/nil/blueprint/transpiler
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -898,7 +898,7 @@ namespace nil {
898
898
reps[" $LOOKUP_LIBRARY_CALL$" ] = _use_lookups ? lookup_library_call :" //No lookups" ;
899
899
reps[" $TEST_NAME$" ] = _test_name;
900
900
reps[" $MODULUS$" ] = to_string (PlaceholderParams::field_type::modulus);
901
- reps[" $VERIFICATION_KEY1$" ] = " 0x" + to_string (_common_data.vk .constraint_system_hash );
901
+ reps[" $VERIFICATION_KEY1$" ] = " 0x" + to_string (_common_data.vk .constraint_system_with_params_hash );
902
902
reps[" $VERIFICATION_KEY2$" ] = " 0x" + to_string (_common_data.vk .fixed_values_commitment );
903
903
reps[" $BATCHES_NUM$" ] = _use_lookups ? " 5" :" 4" ;
904
904
reps[" $EVAL_PROOF_OFFSET$" ] = _use_lookups ? " 0xa1" :" 0x79" ;
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ namespace nil {
157
157
158
158
std::vector<std::uint8_t > init_blob = {};
159
159
nil::crypto3::zk::transcript::fiat_shamir_heuristic_sequential<typename PlaceholderParams::transcript_hash_type> transcript (init_blob);
160
- transcript (common_data.vk .constraint_system_hash );
160
+ transcript (common_data.vk .constraint_system_with_params_hash );
161
161
transcript (common_data.vk .fixed_values_commitment );
162
162
auto etha = transcript.template challenge <typename PlaceholderParams::field_type>();
163
163
Original file line number Diff line number Diff line change @@ -370,7 +370,7 @@ namespace nil {
370
370
371
371
out << " \t {\" array\" :[" << std::endl;
372
372
out << " \t\t " << generate_hash<typename PlaceholderParams::transcript_hash_type>(
373
- vk.constraint_system_hash
373
+ vk.constraint_system_with_params_hash
374
374
) << " ," << std::endl;
375
375
out << " \t\t " << generate_hash<typename PlaceholderParams::transcript_hash_type>(
376
376
vk.fixed_values_commitment
You can’t perform that action at this time.
0 commit comments