Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kacpersaw committed Jul 9, 2024
1 parent caaa3a6 commit c2b78db
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions release/go/spacemesh/v2alpha1/tx.pb.go

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

9 changes: 6 additions & 3 deletions release/openapi/swagger/src/api.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -947,19 +947,22 @@
"format": "uint64"
},
"owner": {
"type": "string"
"type": "string",
"title": "owner account"
},
"totalAmount": {
"type": "string",
"format": "uint64"
},
"vestingEnd": {
"type": "integer",
"format": "int64"
"format": "int64",
"title": "as layer number"
},
"vestingStart": {
"type": "integer",
"format": "int64"
"format": "int64",
"title": "as layer number"
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions spacemesh/v2alpha1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ message ContentsMultiSigSpawn {
}

message ContentsVaultSpawn {
string owner = 1;
string owner = 1; // owner account
uint64 total_amount = 2;
uint64 initial_unlock_amount = 3;
uint32 vesting_start = 4;
uint32 vesting_end = 5;
uint32 vesting_start = 4; // as layer number
uint32 vesting_end = 5; // as layer number
}

message ContentsDrainVault {
Expand Down

0 comments on commit c2b78db

Please sign in to comment.