mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-15 18:00:24 -04:00
renames in proto and api (#277)
rename to getNewDepositAddress() rename trade phase DEPOSIT_CONFIRMED to DEPOSIT_UNLOCKED rename fiat sent/received to payment sent/received
This commit is contained in:
parent
f1b3ff6f08
commit
730bee3e71
26 changed files with 127 additions and 133 deletions
|
@ -792,9 +792,9 @@ message TradeInfo {
|
|||
string phase = 16;
|
||||
string trade_period_state = 17;
|
||||
bool is_deposit_published = 18;
|
||||
bool is_deposit_confirmed = 19;
|
||||
bool is_fiat_sent = 20;
|
||||
bool is_fiat_received = 21;
|
||||
bool is_deposit_unlocked = 19;
|
||||
bool is_payment_sent = 20;
|
||||
bool is_payment_received = 21;
|
||||
bool is_payout_published = 22;
|
||||
bool is_withdrawn = 23;
|
||||
string contract_as_json = 24;
|
||||
|
@ -856,7 +856,7 @@ message TxInfo {
|
|||
service Wallets {
|
||||
rpc GetBalances (GetBalancesRequest) returns (GetBalancesReply) {
|
||||
}
|
||||
rpc GetNewDepositSubaddress (GetNewDepositSubaddressRequest) returns (GetNewDepositSubaddressReply) {
|
||||
rpc GetNewDepositAddress (GetNewDepositAddressRequest) returns (GetNewDepositAddressReply) {
|
||||
}
|
||||
rpc GetXmrTxs (GetXmrTxsRequest) returns (GetXmrTxsReply) {
|
||||
}
|
||||
|
@ -896,10 +896,10 @@ message GetBalancesReply {
|
|||
BalancesInfo balances = 1;
|
||||
}
|
||||
|
||||
message GetNewDepositSubaddressRequest {
|
||||
message GetNewDepositAddressRequest {
|
||||
}
|
||||
|
||||
message GetNewDepositSubaddressReply {
|
||||
message GetNewDepositAddressReply {
|
||||
string subaddress = 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -1523,7 +1523,7 @@ message Trade {
|
|||
TAKER_SEND_FAILED_DEPOSIT_TX_PUBLISHED_MSG = 15;
|
||||
MAKER_RECEIVED_DEPOSIT_TX_PUBLISHED_MSG = 16;
|
||||
MAKER_SAW_DEPOSIT_TX_IN_NETWORK = 17;
|
||||
DEPOSIT_CONFIRMED_IN_BLOCK_CHAIN = 18;
|
||||
DEPOSIT_UNLOCKED_IN_BLOCK_CHAIN = 18;
|
||||
BUYER_CONFIRMED_IN_UI_PAYMENT_INITIATED = 19;
|
||||
BUYER_SENT_PAYMENT_INITIATED_MSG = 20;
|
||||
BUYER_SAW_ARRIVED_PAYMENT_INITIATED_MSG = 21;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue