🐛 Fix bugs

This commit is contained in:
2025-09-08 02:04:13 +08:00
parent f9269d7558
commit 92e4988114
2 changed files with 9 additions and 9 deletions

View File

@@ -132,7 +132,7 @@ message CreateOrderRequest {
message Order {
string id = 1;
optional string payee_wallet_id = 2;
google.protobuf.StringValue payee_wallet_id = 2;
google.protobuf.StringValue currency = 3;
string amount = 4;
google.protobuf.Timestamp expired_at = 5;
@@ -157,11 +157,11 @@ enum OrderStatus {
message Transaction {
string id = 1;
optional string payer_wallet_id = 2;
optional string payee_wallet_id = 3;
google.protobuf.StringValue payer_wallet_id = 2;
google.protobuf.StringValue payee_wallet_id = 3;
string currency = 4;
string amount = 5;
optional string remarks = 6;
google.protobuf.StringValue remarks = 6;
TransactionType type = 7;
}