File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -628,7 +628,8 @@ impl Default for Params {
628628 max_signed_pod_values : 8 ,
629629 max_public_statements : 10 ,
630630 num_public_statements_id : 16 ,
631- max_statement_args : 5 ,
631+ // TODO: Reduce to 5 or less after https://github.com/0xPARC/pod2/issues/229
632+ max_statement_args : 6 ,
632633 max_operation_args : 5 ,
633634 max_custom_predicate_batches : 2 ,
634635 max_custom_predicate_verifications : 5 ,
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ pub fn deserialize_pod(
3737 . unwrap ( )
3838 . get ( & pod_type)
3939 . ok_or ( Error :: custom ( format ! (
40- "pod deserializer for pod_type={} not registered" ,
40+ "pod deserializer for pod_type={} not registered. See https://github.com/0xPARC/pod2/wiki/PodType for pod type assignments. " ,
4141 pod_type
4242 ) ) ) ?;
4343
You can’t perform that action at this time.
0 commit comments