disable payment sent/received buttons until acked

This commit is contained in:
woodser 2024-04-21 15:14:15 -04:00
parent 3a66c9cd24
commit 6455171dea
3 changed files with 6 additions and 6 deletions

View file

@ -1033,10 +1033,10 @@ public abstract class Trade implements Tradable, Model {
checkAndVerifyDaemonConnection();
// check multisig import
if (getWallet().isMultisigImportNeeded()) throw new RuntimeException("Cannot create payout tx because multisig import is needed");
MoneroWallet multisigWallet = getWallet();
if (multisigWallet.isMultisigImportNeeded()) throw new RuntimeException("Cannot create payout tx because multisig import is needed");
// gather info
MoneroWallet multisigWallet = getWallet();
String sellerPayoutAddress = this.getSeller().getPayoutAddressString();
String buyerPayoutAddress = this.getBuyer().getPayoutAddressString();
Preconditions.checkNotNull(sellerPayoutAddress, "Seller payout address must not be null");