Skip to content

Commit

Permalink
Fix order of fields
Browse files Browse the repository at this point in the history
  • Loading branch information
kacpersaw committed Sep 30, 2024
1 parent 191b58f commit 0885162
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
42 changes: 21 additions & 21 deletions release/go/spacemesh/v2alpha1/account.pb.go

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

6 changes: 3 additions & 3 deletions spacemesh/v2alpha1/account.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ package spacemesh.v2alpha1;

message Account {
string address = 1; // account public address
string template = 2; // account template address
AccountState current = 3; // current state
AccountState projected = 4; // projected state (includes pending txs)
AccountState current = 2; // current state
AccountState projected = 3; // projected state (includes pending txs)
string template = 4; // account template address
}

message AccountState {
Expand Down

0 comments on commit 0885162

Please sign in to comment.