According to the code:
|
for index, participant in enumerate(participants): |
|
for vc in vc_matrix: |
|
for k, v in vc.items(): |
|
participants[index][k] = v |
when multiple vcs are specified in participants_matrix, only the last will be effective since it'll override previous ones.
According to the code:
ethereum-package/src/package_io/input_parser.star
Lines 545 to 548 in c56fd46
when multiple
vcs are specified inparticipants_matrix, only the last will be effective since it'll override previous ones.