arbitrator does not share payment account key until after first confirmation (#457)

use payout address from contract instead of PaymentSentMessage
This commit is contained in:
woodser 2022-10-01 07:47:18 -04:00 committed by GitHub
parent 1a6d635e3b
commit c153afff67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 17 additions and 29 deletions

View file

@ -440,14 +440,13 @@ message FinalizePayoutTxRequest {
message PaymentSentMessage {
string trade_id = 1;
string buyer_payout_address = 2;
NodeAddress sender_node_address = 3;
string counter_currency_tx_id = 4;
string uid = 5;
string counter_currency_extra_data = 6;
string payout_tx_hex = 7;
string updated_multisig_hex = 8;
bytes payment_account_key = 9;
NodeAddress sender_node_address = 2;
string counter_currency_tx_id = 3;
string uid = 4;
string counter_currency_extra_data = 5;
string payout_tx_hex = 6;
string updated_multisig_hex = 7;
bytes payment_account_key = 8;
}
message PaymentReceivedMessage {