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
101 changes: 84 additions & 17 deletions api/committerpb/notify.pb.go

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

7 changes: 7 additions & 0 deletions api/committerpb/notify.proto
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,11 @@ message NotificationRequest {
message NotificationResponse {
repeated TxStatus tx_status_events = 1; // List of transaction status events.
repeated string timeout_tx_ids = 2; // List of timeout events.
RejectedTxIds rejected_tx_ids = 3; // List of rejected transaction IDs with a reason.
}

// RejectedTxIds contains a list of transaction IDs that were rejected along with the reason.
message RejectedTxIds {
repeated string tx_ids = 1; // List of rejected transaction IDs.
string reason = 2; // The reason for rejection.
}