mirror of
https://github.com/retoaccess1/haveno-reto.git
synced 2024-11-14 15:13:33 +01:00
reset protobuf indices for xmr extensions
This commit is contained in:
parent
3e112485ba
commit
bcf83c8e74
@ -888,18 +888,17 @@ message TradeInfo {
|
|||||||
message ContractInfo {
|
message ContractInfo {
|
||||||
string buyer_node_address = 1;
|
string buyer_node_address = 1;
|
||||||
string seller_node_address = 2;
|
string seller_node_address = 2;
|
||||||
reserved 3; // was mediator_node_address
|
string arbitrator_node_address = 3;
|
||||||
reserved 4; // was refund_agent_node_address
|
reserved 4; // was mediator_node_address
|
||||||
bool is_buyer_maker_and_seller_taker = 5;
|
reserved 5; // was refund_agent_node_address
|
||||||
string maker_account_id = 6;
|
bool is_buyer_maker_and_seller_taker = 6;
|
||||||
string taker_account_id = 7;
|
string maker_account_id = 7;
|
||||||
PaymentAccountPayload maker_payment_account_payload = 8;
|
string taker_account_id = 8;
|
||||||
PaymentAccountPayload taker_payment_account_payload = 9;
|
PaymentAccountPayload maker_payment_account_payload = 9;
|
||||||
string maker_payout_address_string = 10;
|
PaymentAccountPayload taker_payment_account_payload = 10;
|
||||||
string taker_payout_address_string = 11;
|
string maker_payout_address_string = 11;
|
||||||
uint64 lock_time = 12;
|
string taker_payout_address_string = 12;
|
||||||
|
uint64 lock_time = 13;
|
||||||
string arbitrator_node_address = 100;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -647,10 +647,9 @@ message OfferPayload {
|
|||||||
string hash_of_challenge = 33;
|
string hash_of_challenge = 33;
|
||||||
map<string, string> extra_data = 34;
|
map<string, string> extra_data = 34;
|
||||||
int32 protocol_version = 35;
|
int32 protocol_version = 35;
|
||||||
|
NodeAddress arbitrator_signer = 36;
|
||||||
NodeAddress arbitrator_signer = 1001;
|
bytes arbitrator_signature = 37;
|
||||||
bytes arbitrator_signature = 1002;
|
repeated string reserve_tx_key_images = 38;
|
||||||
repeated string reserve_tx_key_images = 1003;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
enum OfferDirection {
|
enum OfferDirection {
|
||||||
@ -1248,9 +1247,9 @@ message PersistableEnvelope {
|
|||||||
IgnoredMailboxMap ignored_mailbox_map = 16;
|
IgnoredMailboxMap ignored_mailbox_map = 16;
|
||||||
RemovedPayloadsMap removed_payloads_map = 17;
|
RemovedPayloadsMap removed_payloads_map = 17;
|
||||||
|
|
||||||
XmrAddressEntryList xmr_address_entry_list = 1001;
|
XmrAddressEntryList xmr_address_entry_list = 18;
|
||||||
SignedOfferList signed_offer_list = 1002;
|
SignedOfferList signed_offer_list = 19;
|
||||||
EncryptedConnectionList encrypted_connection_list = 1003;
|
EncryptedConnectionList encrypted_connection_list = 20;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1407,13 +1406,12 @@ message OpenOffer {
|
|||||||
message Tradable {
|
message Tradable {
|
||||||
oneof message {
|
oneof message {
|
||||||
OpenOffer open_offer = 1;
|
OpenOffer open_offer = 1;
|
||||||
BuyerAsMakerTrade buyer_as_maker_trade = 2;
|
SignedOffer signed_offer = 2;
|
||||||
BuyerAsTakerTrade buyer_as_taker_trade = 3;
|
BuyerAsMakerTrade buyer_as_maker_trade = 3;
|
||||||
SellerAsMakerTrade seller_as_maker_trade = 4;
|
BuyerAsTakerTrade buyer_as_taker_trade = 4;
|
||||||
SellerAsTakerTrade seller_as_taker_trade = 5;
|
SellerAsMakerTrade seller_as_maker_trade = 5;
|
||||||
ArbitratorTrade arbitrator_trade = 6;
|
SellerAsTakerTrade seller_as_taker_trade = 6;
|
||||||
|
ArbitratorTrade arbitrator_trade = 7;
|
||||||
SignedOffer signed_offer = 1001;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user