Avoid logging addresses and other sensitive data

This commit is contained in:
Sander Ferdinand
2018-03-27 20:47:15 +02:00
committed by moneromooo-monero
parent b35d60db2d
commit 9afaa7cf0f
4 changed files with 6 additions and 6 deletions

View File

@@ -82,7 +82,7 @@ Rectangle{
}
onClicked: {
if(copyValue){
console.log(copyValue + " copied to clipboard");
console.log("Copied to clipboard");
clipboard.setText(copyValue);
appWindow.showStatusMessage(qsTr("Copied to clipboard"),3)
}