mirror of
https://github.com/XRPLF/rippled.git
synced 2026-09-09 09:04:45 +00:00
The configuration reference typed the five trace_* switches as bool with default true. An xrpld config section carries integers, and these keys are read with an integer cast, so a literal "true" fails to convert rather than enabling the switch. Type them as 0 or 1 with default 1, matching the other integer-valued keys in the same table.