mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-25 23:39:26 -05:00
finish processing PaymentReceivedMessage
This commit is contained in:
parent
4c7075b0bd
commit
9c5fdb5d4a
@ -60,11 +60,7 @@ public class ProcessPaymentReceivedMessage extends TradeTask {
|
|||||||
if (trade.getSeller().getNodeAddress().equals(trade.getBuyer().getNodeAddress())) trade.getBuyer().setNodeAddress(null); // tests can reuse addresses
|
if (trade.getSeller().getNodeAddress().equals(trade.getBuyer().getNodeAddress())) trade.getBuyer().setNodeAddress(null); // tests can reuse addresses
|
||||||
|
|
||||||
// process payout tx unless already unlocked
|
// process payout tx unless already unlocked
|
||||||
if (!trade.isPayoutUnlocked()) {
|
if (!trade.isPayoutUnlocked()) processPayoutTx(message);
|
||||||
processPayoutTx(message);
|
|
||||||
complete();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
SignedWitness signedWitness = message.getSignedWitness();
|
SignedWitness signedWitness = message.getSignedWitness();
|
||||||
if (signedWitness != null) {
|
if (signedWitness != null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user