aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-10-13 12:37:55 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-10-13 12:37:55 -0500
commit7cb24f50b8676748212e57017b043ba1e7b08033 (patch)
treeb8376d68af73d3c0e84743128bb36460bf3b4a6f
parent8c5891e28a49e99f1bb2c68e667fda7d72e8e2c7 (diff)
parent8ad5fd4c7672125302140539eb4a2f7ed9e0ad87 (diff)
downloadmonzero-gui-7cb24f50b8676748212e57017b043ba1e7b08033.tar.gz
monzero-gui-7cb24f50b8676748212e57017b043ba1e7b08033.tar.xz
monzero-gui-7cb24f50b8676748212e57017b043ba1e7b08033.zip
Merge pull request #3143
8ad5fd4 main: wizard: console.log fixes (selsta)
-rw-r--r--main.qml2
-rw-r--r--wizard/WizardHome.qml1
2 files changed, 1 insertions, 2 deletions
diff --git a/main.qml b/main.qml
index 3e4faa5a..55f86ce4 100644
--- a/main.qml
+++ b/main.qml
@@ -1299,7 +1299,7 @@ ApplicationWindow {
function fiatApiConvertToFiat(amount) {
var ticker = persistentSettings.fiatPriceCurrency === "xmrusd" ? appWindow.fiatPriceXMRUSD : appWindow.fiatPriceXMREUR;
if(ticker <= 0){
- console.log(fiatApiError("Invalid ticker value: " + ticker));
+ fiatApiError("Invalid ticker value: " + ticker);
return "?.??";
}
return (amount * ticker).toFixed(2);
diff --git a/wizard/WizardHome.qml b/wizard/WizardHome.qml
index 589ec6c0..a7cb8834 100644
--- a/wizard/WizardHome.qml
+++ b/wizard/WizardHome.qml
@@ -222,7 +222,6 @@ Rectangle {
validator: IntValidator { bottom: 1 }
text: persistentSettings.kdfRounds ? persistentSettings.kdfRounds : "1"
onTextChanged: {
- console.log('x');
kdfRoundsText.text = persistentSettings.kdfRounds = parseInt(kdfRoundsText.text) >= 1 ? parseInt(kdfRoundsText.text) : 1;
}
}