-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v2alpha1: Add vesting, vault and drain vault contents to Transaction #361
Conversation
spacemesh/v2alpha1/tx.proto
Outdated
@@ -22,10 +22,13 @@ message Transaction { | |||
TRANSACTION_TYPE_UNSPECIFIED = 0; | |||
TRANSACTION_TYPE_SINGLE_SIG_SEND = 1; | |||
TRANSACTION_TYPE_SINGLE_SIG_SPAWN = 2; | |||
TRANSACTION_TYPE_SINGLE_SIG_SELFSPAWN = 3; | |||
TRANSACTION_TYPE_SINGLE_SIG_SELFSPAWN = 3; // deprecated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about using deprecated option?
TRANSACTION_TYPE_SINGLE_SIG_SELFSPAWN = 3; // deprecated | |
TRANSACTION_TYPE_SINGLE_SIG_SELFSPAWN = 3 [deprecated = true]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool, I didn't know that
spacemesh/v2alpha1/tx.proto
Outdated
uint32 vesting_start = 4; | ||
uint32 vesting_end = 5; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What kind of units are these?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Layer number - added comments
No description provided.