mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-12 08:30:45 -04:00
int64s use [jstype = JS_STRING] to preserve big ints in javascript
This commit is contained in:
parent
59f3fc6385
commit
2b80385928
2 changed files with 10 additions and 10 deletions
|
@ -2361,7 +2361,7 @@ message BlockChainExplorer {
|
|||
|
||||
message PaymentAccount {
|
||||
string id = 1;
|
||||
int64 creation_date = 2;
|
||||
int64 creation_date = 2 [jstype = JS_STRING];
|
||||
PaymentMethod payment_method = 3;
|
||||
string account_name = 4;
|
||||
repeated TradeCurrency trade_currencies = 5;
|
||||
|
@ -2371,8 +2371,8 @@ message PaymentAccount {
|
|||
|
||||
message PaymentMethod {
|
||||
string id = 1;
|
||||
int64 max_trade_period = 2;
|
||||
int64 max_trade_limit = 3;
|
||||
int64 max_trade_period = 2 [jstype = JS_STRING];
|
||||
int64 max_trade_limit = 3 [jstype = JS_STRING];
|
||||
}
|
||||
|
||||
// Currency
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue