-
Adreik
Monero daemon is spamming "failed to find tx meta" error; what's the problem here? Someone broadcasting incorrectly generated transactions or what?
-
Adreik
What kind of issue is this?
-
moneromooo
I don't think so, it's a bug.
-
moneromooo
But you can ignore it, it's harmless.
-
Adreik
Any way to suppress it specifically and no other error messages?
-
moneromooo
Comment it out.
-
moneromooo
It's in txpool.cpp
-
moneromooo
It's in tx_pool.cpp
-
Adreik
Have other people been getting this error?
-
moneromooo
Yes.
-
Adreik
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?
-
covid-29
hello
-
covid-29
compile of gui is broken even on windows
-
covid-29
just git clone and make release-static-win64 and stops
-
covid-29
-
selsta
covid-29: try `./build.sh release"`
-
selsta
`USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release-win64 -j2`
-
covid-29
one liner
-
selsta
try release-win64 instead of release-static-win64
-
covid-29
ok
-
covid-29
why changes are added when they dont work
-
covid-29
strange
-
selsta
they do work
-
selsta
-
selsta
see latest commit, both cmake and qmake work
-
selsta
but if you want to do static compile you need static dependencies
-
covid-29
on makefile there "release-static-win64"
-
rbrunner
covid-29: "compile of gui is broken even on windows" Compiling the GUI for Windows is usually the biggest PITA by far :)
-
selsta
not really, only static is annoying
-
selsta
because you need static dependencies
-
covid-29
from logs u understand that the problem is qt install?
-
covid-29
not static?
-
covid-29
no that i run make release compile is working so selsta is right
-
covid-29
static version is the problem
-
covid-29
one more time from logs u believe that problem is qt install?
-
selsta
not sure, I did not compile static on windows before, but AFAIK it requires static Qt and static boost
-
covid-29
u didnt add anything for android
-
covid-29
will u
-
selsta
-
covid-29
ah good
-
covid-29
i removed i386 arch but still same errors
-
covid-29
on docker
-
nyrx
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?
-
moneromooo
No. It does not. Your expectation is correct.
-
nyrx
That seems odd. I'm running monerod as a service, but an nmap scan of localhost shows the port is open.
-
moneromooo
monerod runs a zmq server on 18082 by default.
-
nyrx
What's that used for?
-
moneromooo
and p2p on 18080 and RPC on 18081.
-
moneromooo
RPC (daemon RPC, not wallet RPC).
-
moneromooo
If you don't want it, --no-zmq.
-
nyrx
Right, so what's the zmq service?
-
moneromooo
(you don't want it unless you have a client that speaks it)
-
nyrx
And why wouldn't the wallet rpc bind to a different port by default?
-
moneromooo
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.
-
moneromooo
History I guess. It would make some kind of sense to make the wallet have a default port like the daemon...
-
moneromooo
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.
-
nyrx
Thanks for the help, much appreciated.