00:32:06 Monero daemon is spamming "failed to find tx meta" error; what's the problem here? Someone broadcasting incorrectly generated transactions or what? 00:37:38 What kind of issue is this? 00:39:09 I don't think so, it's a bug. 00:39:28 But you can ignore it, it's harmless. 00:39:55 Any way to suppress it specifically and no other error messages? 00:40:07 Comment it out. 00:40:13 It's in txpool.cpp 00:40:21 It's in tx_pool.cpp 00:42:20 Have other people been getting this error? 00:43:15 Yes. 09:16:12 With regards to how the donation address has an issued private viewkey, are key image files published to make a full audit wallet for the donation address? 10:50:03 hello 10:50:42 compile of gui is broken even on windows 10:51:07 just git clone and make release-static-win64 and stops 10:51:56 https://paste.debian.net/1159860/ 10:52:45 covid-29: try `./build.sh release"` 10:52:58 `USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release-win64 -j2` 10:53:15 one liner 10:53:31 try release-win64 instead of release-static-win64 10:54:00 ok 10:55:07 why changes are added when they dont work 10:55:09 strange 10:55:31 they do work 10:55:44 https://github.com/monero-project/monero-gui/runs/962802803 10:55:49 see latest commit, both cmake and qmake work 10:55:59 but if you want to do static compile you need static dependencies 10:57:04 on makefile there "release-static-win64" 10:57:23 covid-29: "compile of gui is broken even on windows" Compiling the GUI for Windows is usually the biggest PITA by far :) 10:57:41 not really, only static is annoying 10:57:46 because you need static dependencies 10:58:19 from logs u understand that the problem is qt install? 10:58:23 not static? 10:59:11 no that i run make release compile is working so selsta is right 10:59:23 static version is the problem 11:00:25 one more time from logs u believe that problem is qt install? 11:01:17 not sure, I did not compile static on windows before, but AFAIK it requires static Qt and static boost 11:02:07 u didnt add anything for android 11:02:12 will u 11:02:20 https://github.com/monero-project/monero-gui/issues/3040 11:02:39 ah good 11:03:34 i removed i386 arch but still same errors 11:03:42 on docker 18:04:32 Does monerod run the wallet rpc on port 18082 by default? I wasn't expecting the daemon to run the wallet rpc - isn't that monero-wallet-rpc's job? 18:05:32 No. It does not. Your expectation is correct. 18:06:05 That seems odd. I'm running monerod as a service, but an nmap scan of localhost shows the port is open. 18:06:19 monerod runs a zmq server on 18082 by default. 18:06:29 What's that used for? 18:06:30 and p2p on 18080 and RPC on 18081. 18:06:47 RPC (daemon RPC, not wallet RPC). 18:07:00 If you don't want it, --no-zmq. 18:07:04 Right, so what's the zmq service? 18:07:10 (you don't want it unless you have a client that speaks it) 18:07:18 And why wouldn't the wallet rpc bind to a different port by default? 18:08:03 It exposes simalar RPC to the JSON RPC one, using another protocol. AFAIK only mymonero uses it. It's supposed to be faster, also supports notifications. 18:08:34 History I guess. It would make some kind of sense to make the wallet have a default port like the daemon... 18:09:28 OTOH wallet RPC is more sensitive than daemon RPC, so requiring the user to select a port explicitely means they're more likely to firewall that port. 18:09:59 Thanks for the help, much appreciated.