Fix restriction on child_event_ids (#2783)

Unless I am missing something fundamental here all event_ids are
LedgerStrings not PartyIdStrings.
This commit is contained in:
Moritz Kiefer 2019-09-06 10:22:03 +02:00 committed by GitHub
parent 5acd470211
commit 402ae2adf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -170,7 +170,7 @@ message ExercisedEvent {
// References to further events in the same transaction that appeared as a result of this ``ExercisedEvent``.
// It contains only the immediate children of this event, not all members of the subtree rooted at this node.
//
// Each element must be a valid PartyIdString (as described in ``value.proto``).
// Each element must be a valid LedgerString (as described in ``value.proto``).
//
// Optional
repeated string child_event_ids = 11;