Merge pull request #115

d95e4a3 Write support for tx notes (moneromooo.monero)
This commit is contained in:
Riccardo Spagni
2016-11-09 20:42:44 +02:00
8 changed files with 56 additions and 9 deletions

View File

@@ -50,7 +50,7 @@ Rectangle {
property Settings settingsView: Settings { }
signal paymentClicked(string address, string paymentId, double amount, int mixinCount, int priority)
signal paymentClicked(string address, string paymentId, double amount, int mixinCount, int priority, string description)
signal generatePaymentIdInvoked()
signal checkPaymentClicked(string address, string txid, string txkey);
@@ -302,7 +302,7 @@ Rectangle {
target: transferView
onPaymentClicked : {
console.log("MiddlePanel: paymentClicked")
paymentClicked(address, paymentId, amount, mixinCount, priority)
paymentClicked(address, paymentId, amount, mixinCount, priority, description)
}
}
}