Merge pull request #2588

a113670 History: don't show empty paymentId in tx details (xiphon)
pull/2/head
luigi1111 5 years ago
commit d0c2740a51
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -1598,7 +1598,7 @@ Rectangle {
currentWallet.getTxKeyAsync(hash, function(hash, tx_key) {
informationPopup.title = qsTr("Transaction details") + translationManager.emptyString;
informationPopup.content = buildTxDetailsString(hash, paymentId, tx_key, tx_note, destinations, rings, address, address_label, integratedAddress, dateTime, amount);
informationPopup.content = buildTxDetailsString(hash, hasPaymentId ? paymentId : null, tx_key, tx_note, destinations, rings, address, address_label, integratedAddress, dateTime, amount);
informationPopup.onCloseCallback = null
informationPopup.open();
});