File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ service Wallet {
2525
2626 };
2727
28+ rpc UpdateAccount (AccountUpdateContract ) returns (Transaction ) {
29+
30+ };
31+
2832 rpc CreateAccount (AccountCreateContract ) returns (Transaction ) {
2933
3034 };
Original file line number Diff line number Diff line change @@ -28,6 +28,12 @@ message AccountCreateContract {
2828 bytes owner_address = 3 ;
2929}
3030
31+ // update account name if the account has no name.
32+ message AccountUpdateContract {
33+ bytes account_name = 1 ;
34+ bytes owner_address = 2 ;
35+ }
36+
3137message TransferContract {
3238 bytes owner_address = 1 ;
3339 bytes to_address = 2 ;
Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ enum ReasonCode {
195195 LOCAL_IDENTITY = 10 ;
196196 PING_TIMEOUT = 11 ;
197197 USER_REASON = 12 ;
198+ RESET = 16 ;
198199 UNKNOWN = 255 ;
199200}
200201
You can’t perform that action at this time.
0 commit comments