Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 29 additions & 7 deletions api/committerpb/notify.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions api/committerpb/notify.proto
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ message StreamAllRequest {
// Include endorsements in the response.
// Default: false (only transaction reference and status).
bool include_endorsements = 4;

// Include metadata in the response.
// Default: false (only transaction reference and status).
bool include_metadata = 5;
}

// TxEventBatch contains a batch of transaction events from a single block.
Expand Down Expand Up @@ -95,4 +99,8 @@ message TxEvent {
// Transaction endorsements (included only if include_endorsements is true).
// Empty if not requested or if transaction has no endorsements.
repeated applicationpb.Endorsements endorsements = 4;

// Transaction metadata (included only if include_metadata is true).
// Empty if not requested or if transaction has no metadata.
repeated bytes metadata = 5;
}
Loading