Merge pull request #3145
395d0d5rework an ugly hack in processPaymentRequest() (Philip Kaufmann)952d2cdmake processPaymentRequest() use a single SendCoinsRecipient (Philip Kaufmann)983cef4payment-request UI: use SendCoinsRecipient.message for memo (Philip Kaufmann)c6c97e0[Qt] Rework of payment request UI (mainly for insecure pr) (Philip Kaufmann)
This commit is contained in:
@@ -262,8 +262,8 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran
|
||||
// and emit coinsSent signal for each recipient
|
||||
foreach(const SendCoinsRecipient &rcp, transaction.getRecipients())
|
||||
{
|
||||
// Don't touch the address book when we have a secure payment-request
|
||||
if (rcp.authenticatedMerchant.isEmpty())
|
||||
// Don't touch the address book when we have a payment request
|
||||
if (!rcp.paymentRequest.IsInitialized())
|
||||
{
|
||||
std::string strAddress = rcp.address.toStdString();
|
||||
CTxDestination dest = CBitcoinAddress(strAddress).Get();
|
||||
|
||||
Reference in New Issue
Block a user