mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-11-05 11:56:37 +00:00
always use the master wallet payment code when creating the notification transaction payload on the send tab
This commit is contained in:
parent
3fdf093a26
commit
d7d23f9b58
1 changed files with 1 additions and 1 deletions
|
|
@ -1205,7 +1205,7 @@ public class SendController extends WalletFormController implements Initializabl
|
|||
|
||||
public void broadcastNotification(Wallet decryptedWallet) {
|
||||
try {
|
||||
PaymentCode paymentCode = decryptedWallet.getPaymentCode();
|
||||
PaymentCode paymentCode = decryptedWallet.isMasterWallet() ? decryptedWallet.getPaymentCode() : decryptedWallet.getMasterWallet().getPaymentCode();
|
||||
PaymentCode externalPaymentCode = paymentCodeProperty.get();
|
||||
WalletTransaction walletTransaction = walletTransactionProperty.get();
|
||||
WalletNode input0Node = walletTransaction.getSelectedUtxos().entrySet().iterator().next().getValue();
|
||||
|
|
|
|||
Loading…
Reference in a new issue