v2: trx_id - str -> int
Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
parent
8e26824d21
commit
ea79873420
@ -212,7 +212,7 @@ message TFAReq {
|
|||||||
optional string mobile = 2;
|
optional string mobile = 2;
|
||||||
optional string email = 3;
|
optional string email = 3;
|
||||||
optional string reason = 4; // issued jwt reason -> can be login, redeem, withdrawal
|
optional string reason = 4; // issued jwt reason -> can be login, redeem, withdrawal
|
||||||
optional string transaction_id = 5;
|
optional int64 transaction_id = 5;
|
||||||
optional TfaStateEnum state = 6;
|
optional TfaStateEnum state = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ message CheckTFAReq {
|
|||||||
message TFA {
|
message TFA {
|
||||||
TfaStateEnum state = 1;
|
TfaStateEnum state = 1;
|
||||||
int64 code = 2;
|
int64 code = 2;
|
||||||
string transaction_id = 3;
|
int64 transaction_id = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum TfaStateEnum {
|
enum TfaStateEnum {
|
||||||
|
|||||||
@ -350,7 +350,7 @@ message TransferAssetRes {
|
|||||||
auth.v1.Recipient recipient = 1;
|
auth.v1.Recipient recipient = 1;
|
||||||
double amount = 2;
|
double amount = 2;
|
||||||
// TODO: Change to Asset
|
// TODO: Change to Asset
|
||||||
string transaction_id = 3;
|
int64 transaction_id = 3;
|
||||||
string transaction_hash = 4;
|
string transaction_hash = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user