mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-01 11:16:11 -04:00
disable payment sent/received buttons until acked
This commit is contained in:
parent
3a66c9cd24
commit
6455171dea
3 changed files with 6 additions and 6 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue