-
Guest53
Hello so I'm porting RandomX to llvm - anyone have some idea what IADD_M does?
-
xmrscott[m]
Thanks ErCiccione for taking on moderating the upcoming -dev meeting
-
selsta
Guest53: try asking in #monero-pow
-
ErCiccione
xmrscott: No problem, i'll create a dedicated issue for it today
-
ErCiccione
jberman94: will you be able to participate to the dev meeting this saturday at 17:00? Would be good to have an overview of the status of the view tags PR
-
ErCiccione
ping vtnerd as well
-
Guest38
Anyone home?
-
moneromooo
If you have a question about monero development, just ask and wait.
-
RobertDiMonero
ok
-
RobertDiMonero
Regarding the 'decoy selection bug' from 7 months ago:
-
RobertDiMonero
Were the outputs of those transactions only vulnerable during that specific 20min time window, within the first 2 blocks?
-
RobertDiMonero
In other words, if the same (7-month old) outputs were analysed 'today' would they still reveal any vulnerable info, or did the outputs become increasingly obfuscated (and improbable to analyse) as more time and blocks passed by?
-
moneromooo
jberman[m] would know best but as a general rule, information is not lost on the blockchain. You can lose information that's not on the chain, such as exact timing of events, but that's it.
-
RobertDiMonero
Ok. Should I wait for jberman[m] to respond, or can private msg him/her?
-
moneromooo
Wait until they see that.
-
RobertDiMonero
Ok.
-
RobertDiMonero
I keep getting pinged out, and lose view of the chat log. is there a best time to catch jberman[m] or the other dev-mods online? e.g. after 8pm GMT?
-
sethforprivacy
RobertDiMonero: You can also join via Matrix, and not have to worry about those issues.
-
sethforprivacy
-
RobertDiMonero
Ok, thanks. I was thinking about joining but I only had the one question so it seemed a little overkill (I probably won't be using it again)
-
ErCiccione
New issue for the dev meeting:
monero-project/meta #655
-
WillMorrison[m]
How fast is the wallet RPC for making a payment gateway? Do I need some custom solution or what is the best strategy to accept payments?
-
moneromooo
The network code is not super fast.
-
moneromooo
Though it got better.
-
moneromooo
That's something you can test fairly easily too.
-
moneromooo
But if you don't get an order a second, it'll be fine I think.
-
nikg83[m]
-
WillMorrison[m]
nikg83[m]: Yes, those use the JSON RPC. Is that fast enough for generating many addresses, polling for transactions, and sending transactions all the time?
-
WillMorrison[m]
Not sure if it can handle concurrent requests. From what I have read it can't.
-
hyc
prob no issue with read-only requests
-
notmtth[m]
Hello, Im having a problem compiling my miner. How do I tell the compiler to use software based AES?
-
moneromooo
Try -mno-aes maybe ?
-
hyc
edhat's x86-specific
-
hyc
*that's
-
moneromooo
Is the latest person who said they'd add a rwlock to replace the blockchain lock here ?
-
moneromooo
If so, did you get anywhere yet ?
-
notmtth[m]
I tring to do it on a raspberry pi4.
-
notmtth[m]
-
notmtth[m]
Thanks in advance
-
moneromooo
What's the problem compiling anyway ? You can paste on paste.debian.net and post the URL here.
-
jberman[m]
that was @midnightmage, haven't heard from them since they first started looking into it
-
jberman[m]
<RobertDiMonero> "Were the outputs of those..." <- First clarification: it actually turned out to be the case that newly spent transactions were not guaranteed identifiable as linkable (I.e. the published bug was not as severe as was first thought) because there was at least 1 implementation in the wild that didn't have the issue (MyMonero was using that). See this post explaining
-
jberman[m]
-
jberman[m]
Second: assume you receive a tx0, then a tx1 spending the Monero received from tx0. If tx1 was spent 10 blocks later, and the block it is spent in has >100 outputs in it (most tx's have 2 outputs, some have more, max is 16, and the avg around that time was ~63 outputs per block), then tx1 isn't as affected by the bug. If tx1 was spent 11 blocks later, and blocks 10 and 11 combined have >100 outputs, then tx1 isn't as affected, etc.
-
jberman[m]
*wasn't as affected. it was patched
-
jberman[m]
<RobertDiMonero> "In other words, if the same (7-..." <- As time goes on, more people have likely referenced tx0 as decoys in their own tx's. Like moneromoo said, you can't erase the above having happened from the chain (i.e. it's not as though that the above cannot be checked still), but I would say yes it is the case that this offers greater plausible deniability that necessarily does provide increased obfuscation in some capacity
-
jberman[m]
<ErCiccione> "jberman94: will you be able to..." <- Yep I'll be there
-
jberman[m]
not sure who jberman 94 is
-
vtnerd
ErCiccione: yes, I should be able to make that meeting time
-
gir
anyone seen this error before:
-
gir
Permission denied (src/ip_resolver.cpp:520)
-
gir
when launching daemon
-
ErCiccione
<jberman[m]> "not sure who jberman 94 is" <- I thought that was your matrix account
-
-
WillMorrison[m]
Is this where the wallet RPC server should stop or is it hung up?
-
gir
it said core rpc server initialized ok
-
gir
then permission denid -> aborted
-
gir
i should mention this is on an android phone via userland
-
Rucknium[m]1
<WillMorrison[m]> "Is this where the wallet RPC..." <- I believe that means that it is operating normally. It is waiting for commands.
-
notmtth[m]
<moneromooo> "Try -mno-aes maybe ?" <- Im using Cmake. Actually im trying to compile wownero software. They told to come here to get some effective support
-
notmtth[m]
This is the error
-
notmtth[m]
`Program received signal SIGILL, Illegal instruction.
-
notmtth[m]
0x0000aaaaab293524 in aes_expand_key ()`
-
notmtth[m]
I tried switch to other arch versions but nothing works
-
wernervasquez[m]
notmtth: I had a similar issue with another open source project. How old is your processor? Your processor might not support the instruction and the code does not gracefully fall back to another implementation.
-
moneromooo
You said you had trouble compiling. Your error sounds like you are running it.
-
notmtth[m]
Its recent
-
notmtth[m]
Let me send the exact processor I have one second
-
moneromooo
If it's compiled, try running with MONERO_USE_SOFTWARE_AES-1, but that's more #monero now.
-
wernervasquez[m]
Hmm. Well. What is the processor and are you sure it actually supports the instruction?
-
notmtth[m]
moneromooo: Tried already
-
notmtth[m]
wernervasquez[m]: Idk if it does, thats why Im here
-
notmtth[m]
The processor is a Cortex-A72 ARM v8 64 bit
-
sech1
not all ARM cpus support AES
-
sech1
even within the same model
-
sech1
"cat /proc/cpuinfo | grep aes" will tell you more
-
notmtth[m]
Thanks
-
notmtth[m]
No output
-
wernervasquez[m]
I assume that without the "| grep aes" it does return something, though?
-
notmtth[m]
It does
-
notmtth[m]
Thats the model Raspberry Pi 4 Model B Rev 1.2
-
notmtth[m]
* the model: Raspberry
-
sech1
Raspberry Pi doesn't have AES
-
sech1
it would return something like "Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid" if it had AES
-
sech1
RPi manufacturer saved money by using cheaper SOC's without AES support
-
notmtth[m]
Oh
-
notmtth[m]
Thank you answering
-
wernervasquez[m]
notmtth: can you run the armv7 version mentioned in the stackexchange you referenced?
-
notmtth[m]
Im actually trying to compile some wownero software
-
notmtth[m]
There is now armv7 version
-
wernervasquez[m]
notmtth: Can you run the monero armv7 build? Can you compile and run the monero armv7 build? (That's what I would do at this point, then perhaps you may be able to tease out the difference between that and the wownero effort).
-
notmtth[m]
I could yeah
-
chaser[m]
could the Jamtis seed format be constructed such that the first 12 words are BIP-39 compliant, and the rest contain the birth block or the birthday?
-
UkoeHB
tevador ^
-
UkoeHB
chaser[m]:
github.com/tevador/polyseed maybe if you don't find the answer you want, you could add an Issue to that github
-
chaser[m]
UkoeHB: thanks for the directions!
-
chaser[m]
okay, there's no way polyseed could work with BIP-39, it uses a whole another take on almost every aspect