Skip to content
Open
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
4 changes: 1 addition & 3 deletions src/rfq_test/proto/injective_rfq_rpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,8 @@ message RFQRequestInputType {
string request_address = 7;
// Expiry timestamp in milliseconds
uint64 expiry = 8;
// Status (open, cancelled, completed)
string status = 9;
// Transaction time timestamp
uint64 transaction_time = 10;
uint64 transaction_time = 9;
Comment on lines 59 to +61
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

transaction_time was renumbered from field 10 to 9 after removing status. In protobuf, field numbers are part of the wire contract and should not be reused; this change will break backward/forward compatibility (old clients/servers will misinterpret or drop the field due to tag/type mismatch). Keep transaction_time = 10 and reserve field number 9 (and optionally the name status) to prevent accidental reuse.

Copilot uses AI. Check for mistakes.
}

message RequestResponse {
Expand Down