diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-03-27 20:47:15 +0200 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:04 +0100 |
| commit | 9afaa7cf0f4ff3ba954a96b9bfd5f462040d452b (patch) | |
| tree | cca154e476581f895bc63a825f13f1eea96d89b7 /components/HistoryTableInnerColumn.qml | |
| parent | b35d60db2d8b7508127e8d365d22a82d58bd9dc6 (diff) | |
| download | monzero-gui-9afaa7cf0f4ff3ba954a96b9bfd5f462040d452b.tar.gz monzero-gui-9afaa7cf0f4ff3ba954a96b9bfd5f462040d452b.tar.xz monzero-gui-9afaa7cf0f4ff3ba954a96b9bfd5f462040d452b.zip | |
Avoid logging addresses and other sensitive data
Diffstat (limited to 'components/HistoryTableInnerColumn.qml')
| -rw-r--r-- | components/HistoryTableInnerColumn.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/HistoryTableInnerColumn.qml b/components/HistoryTableInnerColumn.qml index 61c39deb..23ff766e 100644 --- a/components/HistoryTableInnerColumn.qml +++ b/components/HistoryTableInnerColumn.qml @@ -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) } |
