08:14:00 hi 08:14:46     Q_INVOKABLE bool start(const QString &flags, NetworkType::Type nettype, const QString &dataDir = "", const QString &bootstrapNodeAddress = "", const QString ¤tWallet.address = "", bool noSync = false, bool pruneBlockchain = false); 08:14:54 i add it in wrong way 08:19:48 DaemonManager.h:50:176: error: expected ')' 09:38:18 anyone knows how to add on c this qml "currentWallet.address" 09:46:57 file that must be added is this src/daemon/DaemonManager.cpp 09:47:40 becasuse of lack of experience with qml i dont know how to add it 09:47:49 Thank you. 09:48:09 Is a syntax problem 10:53:01 is anyone here 10:57:43 Your question is just too vaguely defined. 11:01:48 daemon to start mining without clicking anywhere immediately after wallet is open 11:04:01 arguments << "--start-mining" << currentWallet.address; 11:04:11 how to add this line 11:04:42 on this file DaemonManager.cpp 11:10:08 git grep "non-interactive" 11:10:17 I'm fairly sure the GUI runs monerod with that. 11:10:32 Then add options in the same way as that one is. 11:10:54 ie, "--start-mining" and your address. They'll be 2 separate arguments most likely. 11:11:14 arguments << "--non-interactive"; 11:11:27 but i dont know the address 11:11:39 address cant be hardcoded 11:11:57 Ah. currentWallet.address looks plausible. What's the error you're getting with this ? 11:12:50 http://paste.debian.net/1259620/ 11:13:49 i added like this too "const QString ¤tWallet.address  = ""," 11:13:51 Odd. That looks like a header file, but your changes would not have been in a header file. 11:13:53 but same error 11:13:56 Ah. 11:14:10 Yes, that looks all wtf :D 11:15:18 Is currentWallet already used in the area where aruments are being constructed ? IT might not be accessible from there. 11:16:26 http://paste.debian.net/1259621/ 11:17:04 "in the area where aruments are being constructed" 11:17:20 That's the important part, which tells you how to get to it. 11:18:14 i lack qml syntax 11:18:34 whereis the area 11:18:37 i would start searching "how to pass qml paramaters from to c++" (i have no idea, but it seems some steps are involved) 11:18:52 The place where you found this: arguments << "--non-interactive"; 11:19:16 it, you might need to use use appWindow.currentWallet, or something else. 11:19:57 The last paste you posted shows appWindow being a probably global holding that var. 11:21:36 (and lose that weird line you added to the header) 11:23:03 ok 11:23:15 thank you 11:24:38 And double check whether spaces are needed. If arguments is a vector, none are nedeed. If it's a string, some might. If existing code around that line also adds spaces, do the same. If not, not. 11:25:35 something like QObject *qmlFinder = rootObject->findChild("QrFinder"); ? 14:08:18 selsta: malinero: did you ever try getting a local node working on androdi? <-- Only with a terminal, not though the GUI 14:32:44 Hello, Is it possible for light wallets to compute the fees of the wallet's previous transactions ?