EIPs icon indicating copy to clipboard operation
EIPs copied to clipboard

Config: fix malformed regex pattern in mlc_config.json

Open viktorking7 opened this issue 3 months ago • 2 comments

Problem: The regex pattern "[]*csl-json"inconfig/mlc_config.jsoncontains an unescaped closing bracket]` within a character class, which can cause incorrect pattern matching behavior.

Solution: Escape the closing bracket to ensure proper regex parsing:

  • Before: "[]*csl-json"`
  • After: "[]]*csl-json"`

viktorking7 avatar Sep 25 '25 18:09 viktorking7

File config/mlc_config.json

Requires 2 more reviewers from @g11tech, @lightclient, @samwilsn, @xinbenlv

eth-bot avatar Sep 25 '25 18:09 eth-bot

leaving to @SamWilsn for taking call on this PR

g11tech avatar Dec 09 '25 16:12 g11tech