-
ningli[m]
anybody here
-
moneromooo
Yes.
-
ningli[m]
i have a question
-
ningli[m]
it really
-
ningli[m]
Troubled me for a long time
-
ningli[m]
i wanna get some help
-
kico
ningli[m], just ask
-
ningli[m]
ok
-
ningli[m]
i have received a funds from someone, and i can view it on the blockchain,but i can't this transaction in any monero wallet,mymonero
-
ningli[m]
or some other wallet
-
ningli[m]
and my balance dont show it,its 0
-
moneromooo
Is that a programming question somehow ? If not, try #monero.
-
ningli[m]
the transaction history is null in any wallet,whether in mymonero or in monero-gui
-
ningli[m]
this is weird
-
ningli[m]
Even if it is transferred out, there should be a record of transfer in,but there is no record here
-
moneromoon[m]
did a block get mined yet?
-
moneromoon[m]
does it have 1 'confirmation' ?
-
moneromoon[m]
you wont see it until its been confirmed
-
moneromooo
Don't reply to non progrmaming stuff, that only encourages them
-
moneromooo
(though I'm guilty of that myself :P)
-
moneromoon[m]
truth
-
fluffydonkey[m]
Seems like the cmake file for monero-gui is specifically looking for Qt5. Won't build with my Qt6 install
-
selsta
we don't support Qt6 yet
-
selsta
it might work if you change cmake file
-
SerHack
Are there any problems if I compile Monero with Clang?
-
hyc
it makes a *bong* noise when it compiles?
-
hyc
Both the Android and Mac builds use clang already
-
SerHack
hyc: funny haha! I was just wondering :D
-
mj-xmr
22% reduction of compilation (parsing actually) time, using Unity Build of CMake. Quite a quickie:
-
mj-xmr
-
sech1
unity builds are fun until you get name conflicts for global variables, did you have such issues?
-
-
mj-xmr
sech1, yes, and I fixed them in this PR. For Monero, Unity builds are topic for the unit tests and core tests only, basically.
-
mj-xmr
Since only these targets have many source files, that mostly include the same headers. This means, that it's relatively easy to maintain.
-
mj-xmr
Not to mention, that it induces some more discipline from the coder. Global vars are a no-go.
-
mj-xmr
And stuff in anonymous namespaces can be easily replaced with private static member variables / methods.
-
mj-xmr
fluffydonkey[m], I recommend to push all you have to your fork, and then clone it again. Helped me with the same issue.
-
fluffydonkey[m]
thanks