aboutsummaryrefslogtreecommitdiff
path: root/pages/settings
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2022-10-07 01:49:31 +0200
committerselsta <selsta@sent.at>2022-10-07 02:28:44 +0200
commit80ade41905cff40eef94e27d39f14f41e887c96d (patch)
treef039b95585b3f7d4f9e0f59c2732b2c346cbcb94 /pages/settings
parentaef4a982dc644b3e971a89c8b65dd57d21d5e085 (diff)
downloadmonzero-gui-80ade41905cff40eef94e27d39f14f41e887c96d.tar.gz
monzero-gui-80ade41905cff40eef94e27d39f14f41e887c96d.tar.xz
monzero-gui-80ade41905cff40eef94e27d39f14f41e887c96d.zip
DaemonManager: take dataDir into account when sending cmd
Diffstat (limited to 'pages/settings')
-rw-r--r--pages/settings/SettingsLog.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/settings/SettingsLog.qml b/pages/settings/SettingsLog.qml
index 4c393ee9..d11201b0 100644
--- a/pages/settings/SettingsLog.qml
+++ b/pages/settings/SettingsLog.qml
@@ -254,7 +254,7 @@ Rectangle {
onAccepted: {
if(text.length > 0) {
consoleArea.logCommand(">>> " + text)
- daemonManager.sendCommandAsync(text.split(" "), currentWallet.nettype, function(result) {
+ daemonManager.sendCommandAsync(text.split(" "), currentWallet.nettype, persistentSettings.blockchainDataDir, function(result) {
if (!result) {
appWindow.showStatusMessage(qsTr("Failed to send command"), 3);
}