Skip to content

Commit 6947ae8

Browse files
author
Cerberus Merlin
committed
fix: Silent fallback from BUNDLED PARAM_GROUP to sequential rendering in Generic Transaction Parser
1 parent 1fbc2ac commit 6947ae8

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/features/generic_tx_parser/gtp_param_group.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,10 @@ bool format_param_group(const s_field *field) {
8080
const s_param_group *group = &field->param_group;
8181

8282
if (group->iteration_type == GROUP_ITER_BUNDLED) {
83-
// BUNDLED interleaving requires per-element formatters not yet exposed.
84-
// Fall back to sequential order until the iteration infrastructure is extended.
85-
PRINTF("GROUP: BUNDLED iteration not yet fully implemented; using SEQUENTIAL order\n");
83+
PRINTF("GROUP: BUNDLED iteration unsupported\n");
84+
return false;
8685
}
8786

88-
// SEQUENTIAL (and BUNDLED fallback): format each sub-field in declaration order.
8987
for (s_group_field_node *n = group->fields; n != NULL;
9088
n = (s_group_field_node *) n->node.next) {
9189
if (!format_field(n->field)) {

0 commit comments

Comments
 (0)