Skip to content

Commit

Permalink
chore: minor cosmetic cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
arunma committed Jan 2, 2024
1 parent 327de23 commit 1465801
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 64 deletions.
9 changes: 4 additions & 5 deletions proto/raft.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ syntax = "proto3";
package raft;

message RequestVoteRequest {
string to = 1;
int32 term = 2;
string candidate_id = 3;
int64 last_log_index = 4;
int32 last_log_term = 5;
int32 term = 1;
string candidate_id = 2;
int64 last_log_index = 3;
int32 last_log_term = 4;
}

message RequestVoteResponse {
Expand Down
Loading

0 comments on commit 1465801

Please sign in to comment.