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; } }