Skip to content

Commit 4e5eeb9

Browse files
committed
bump default params temporarily
1 parent 0167872 commit 4e5eeb9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/middleware/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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,

src/middleware/pod_deserialization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)