Skip to content

Commit

Permalink
Merge pull request #181 from AztecProtocol/rk/merge_serialisation_issues
Browse files Browse the repository at this point in the history
fix serialisation issues with merge/base on ts
rahul-kothari authored Apr 6, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 32b3870 + 75d5f34 commit f7672d2
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -83,8 +83,12 @@ template <typename NCT> std::ostream& operator<<(std::ostream& os, BaseRollupInp
{
return os << "kernel_data:\n"
<< obj.kernel_data << "\n"
<< "start_private_data_tree_snapshot:\n"
<< obj.start_private_data_tree_snapshot << "\n"
<< "start_nullifier_tree_snapshot:\n"
<< obj.start_nullifier_tree_snapshot << "\n"
<< "start_contract_tree_snapshot:\n"
<< obj.start_contract_tree_snapshot << "\n"
<< "low_nullifier_leaf_preimages:\n"
<< obj.low_nullifier_leaf_preimages << "\n"
<< "low_nullifier_membership_witness:\n"
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ template <typename NCT> std::ostream& operator<<(std::ostream& os, PreviousRollu
{
return os << "base_or_merge_rollup_public_inputs: " << obj.base_or_merge_rollup_public_inputs << "\n"
<< "proof: " << obj.proof << "\n"
<< "vk: " << obj.vk << "\n"
<< "vk: " << *(obj.vk) << "\n"
<< "vk_index: " << obj.vk_index << "\n"
<< "vk_sibling_path: " << obj.vk_sibling_path << "\n";
};

0 comments on commit f7672d2

Please sign in to comment.