@@ -258,6 +258,7 @@ pub(crate) fn layout_statements(
258258
259259 // Input signed pods region
260260 // TODO: Replace this with a dumb signed pod
261+ // https://github.com/0xPARC/pod2/issues/246
261262 let none_sig_pod_box: Box < dyn Pod > = Box :: new ( NonePod { } ) ;
262263 let none_sig_pod = none_sig_pod_box. as_ref ( ) ;
263264 assert ! ( inputs. signed_pods. len( ) <= params. max_input_signed_pods) ;
@@ -548,6 +549,7 @@ pub struct MainPod {
548549// generate it on-demand.
549550fn get_common_data ( params : & Params ) -> Result < CommonCircuitData < F , D > , Error > {
550551 // TODO: Cache this somehow
552+ // https://github.com/0xPARC/pod2/issues/247
551553 let rec_params = recursion:: new_params :: < MainPodVerifyTarget > (
552554 params. max_input_recursive_pods ,
553555 NUM_PUBLIC_INPUTS ,
@@ -567,6 +569,7 @@ impl MainPod {
567569 // 1, 3, 4, 5 verification via the zkSNARK proof
568570 let rec_circuit_data = & * STANDARD_REC_MAIN_POD_CIRCUIT_DATA ;
569571 // TODO: cache these artefacts
572+ // https://github.com/0xPARC/pod2/issues/247
570573 let ( _, circuit_data) = RecursiveCircuit :: < MainPodVerifyTarget > :: circuit_data_padded (
571574 self . params . max_input_recursive_pods ,
572575 & rec_circuit_data. common ,
0 commit comments