-
gingeropolous
huh, only an uptime of 1.5 hours. i definitely compiled longer ago than that.
-
gingeropolous
but it was a clean crash, which is nice
-
gingeropolous
huh, but xmrchain.net is up for 8 hrs
-
usamat
hello.
-
usamat
#define BULLETPROOF_MAX_OUTPUTS 16
-
usamat
this is the limit of max vout?
-
usamat
"vin": [ {
-
usamat
"key": {
-
usamat
"amount": 0,
-
usamat
"key_offsets": [ 24957435, 1034689, 107524, 15196, 2387, 12576, 367, 15673, 22382, 20671, 1553
-
usamat
],
-
usamat
"k_image": "6ee53b30366c5695706514c614a1163c9cf1bb0dee6ccc7f575d5f54a3057d4c"
-
usamat
}
-
usamat
}
-
usamat
],
-
usamat
"vout": [ {
-
usamat
"amount": 0,
-
usamat
"target": {
-
usamat
"key": "45ee17f65852f68ad73ce200dd16be92a5878cb4d86ecc740b02828664c2510e"
-
usamat
}
-
usamat
}, {
-
usamat
"amount": 0,
-
usamat
"target": {
-
iDunk
This channel is not a patebin.
-
iDunk
*pastebin
-
usamat
okay. i would have edited my message if i could.
-
moneromooo
Only for rct outputs. You can have more than 16 for pre-rct txes.
-
usamat
got it! but we dont have any limits on the inputs right?
-
moneromooo
Just the max tx size, which depends on the max block size.
-
usamat
(y)
-
woodser
Guest_19: saw your DM. feel free to DM me again if you see this :)
-
zib
I'm getting illegal instruction after compiling monero on my rpi4. Googled and saw to try -DAES_NO=ON but didn't work. Anyone else that's come across this?
-
wfaressuissia[m]
"
tevador/RandomX #202" merge this pull request and repeat
-
zib
thx!
-
zib
hmm no it was the aes thing anyway. Missed Setting CXX flag -march=armv8-a+crypto . Need to skip the +crypto
-
hyc
hey guys, having 1 or 2 people with merge privs makes the project too centralized.
-
hyc
we should put monero code onto a blockchain
-
hyc
devs must mine to have their PRs merged into the next release
-
hyc
/s
-
TheoStorm
FYI: I get a "Error: unexpected error: sv/gamma are too large" error in the recent CLI when trying to send to 20 addresses (+ 1 change) in a single transaction. Is that normal behaviour?
-
gingeropolous
i think 16 outputs is max TheoStorm
-
TheoStorm
k, I guess would be good to change the error message or something then (or do a sanity check)
-
TheoStorm
will try with 10 outputs first
-
gingeropolous
nonsense, thats a perfectly crystal clear error message :)
-
hyc
16 outs is max
-
TheoStorm
:)
-
Andres65
Hi! I want to build Monero static libraries on my Mac OS X. First of all, I tried to build Monero dependencies with -fpic like in the Dockerfile on main repo. I try to build deps in separate directory (not in /usr/local/) to prevent conflicts with system libs. In my first attempt I set BOOST_ROOT to this custom deps directory and run make
-
Andres65
-j$(nproc) release-static. I got following errors:
paste.debian.net/1186936 Can somebody help me with this errors?
-
moneromooo
It's likely finding two different versoons of boost.
-
moneromooo
You may need to delete CMakeCache.txt from the build tree, cmake likes to cache a bit much.
-
Andres65
Ok. I will try
-
Andres65
Oh, I forgot that I remove build directory before running make release-static.
-
moneromooo
Then run with VERBOSE=1 to see -I -isystem -L etc.
-
Andres65
Something like that: BOOST_ROOT=/Users/andres/playground/pymonero/deps/boost_1_75_0 VERBOSE=1 make -j$(nrpoc) release-static ?
-
moneromooo
Maybe. I always add VERBOSE=1 as a make parameter, not sure it'll get picked up from env vars.
-
Andres65
Specifying BOOST_ROOT not working. Cmake used /usr/local/boost that compiled without static parameter(
-
moneromooo
Other software might be there, causing a -I for it.
-
Andres65
What command should I run to build only static lib with "get_block_hashing_blob" function?
-
Andres65
Instead of all libs in release-static
-
moneromooo
make -C build/... cryptonote_basic
-
Andres65
paste.debian.net/1186947 Should I pay attention to this warnings?
-
moneromooo
I don't know.
-
ForestMa1per
bonjour everyone
-
ForestMa1per
if i wanted to make my own nodejs randomx miner how would i go about doing it
-
ForestMa1per
if i wanted to code it from complete scratch, what frameworks and stuff would i need to know?
-
moneromooo
Javascript and C++. It'll be slow though.
-
ForestMa1per
thanks
-
ForestMa1per
are there any resources out there I can get started with?
-
hyc
without fully emulated floating point math, you can't implement randomX in JS
-
hyc
and that would be ridiculously slow
-
ForestMa1per
but it's possible?
-
ForestMa1per
what about implementing it in python?
-
NickvanSaberhagn
ForestMa1per: The channel #monero-pow is a good place to get help for RandomX though moneromooo and Hyc are excellent resources themselves
-
moneromooo
Not me. I've not really looked at it.
-
ForestMa1per
thanks, i'll head there
-
mj-xmr
moneromooo, thanks for approval. At the same time I was adding the due comments:
-
mj-xmr
-
Andres59
How to convert blocktemplate_blob to hashing_blob? Is it difficult to write such a function on Python?
-
Andres75
I want to understand how to get timestamp from block template: 0e0ea89fe08106b4e31026caf1498f39ed0889db2668ebfe5cebf50d024b363aef355a035c9d7f000000000....
-
Andres75
I should look at this part of block template "a89fe08106"? I know that it should be varint. Can somebody explain how to decode this value? Is it LE or BE?
-
Andres59
How to convert varint value "a89fe08106" to timestamp integer?
-
wfaressuissia[m]
-
gingeropolous
this guy