04:34:09 huh, only an uptime of 1.5 hours. i definitely compiled longer ago than that. 04:34:20 but it was a clean crash, which is nice 04:39:25 huh, but xmrchain.net is up for 8 hrs 12:04:37 hello. 12:04:38 #define BULLETPROOF_MAX_OUTPUTS                 16 12:04:53 this is the limit of max vout? 12:04:53  "vin": [ { 12:04:54       "key": { 12:04:54         "amount": 0, 12:04:55         "key_offsets": [ 24957435, 1034689, 107524, 15196, 2387, 12576, 367, 15673, 22382, 20671, 1553 12:04:55         ], 12:04:56         "k_image": "6ee53b30366c5695706514c614a1163c9cf1bb0dee6ccc7f575d5f54a3057d4c" 12:04:56       } 12:04:57     } 12:04:57   ], 12:04:58   "vout": [ { 12:04:58       "amount": 0, 12:04:59       "target": { 12:04:59         "key": "45ee17f65852f68ad73ce200dd16be92a5878cb4d86ecc740b02828664c2510e" 12:05:00       } 12:05:00     }, { 12:05:01       "amount": 0, 12:05:01       "target": { 12:05:08 This channel is not a patebin. 12:05:13 *pastebin 12:07:25 okay. i would have edited my message if i could. 12:09:16 Only for rct outputs. You can have more than 16 for pre-rct txes. 12:11:21 got it! but we dont have any limits on the inputs right? 12:16:53 Just the max tx size, which depends on the max block size. 12:20:00 (y) 13:46:45 Guest_19: saw your DM. feel free to DM me again if you see this :) 13:48:59 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? 13:50:03 "https://github.com/tevador/RandomX/pull/202" merge this pull request and repeat 13:50:22 thx! 14:00:48 hmm no it was the aes thing anyway. Missed Setting CXX flag -march=armv8-a+crypto . Need to skip the +crypto 15:07:36 hey guys, having 1 or 2 people with merge privs makes the project too centralized. 15:07:50 we should put monero code onto a blockchain 15:08:14 devs must mine to have their PRs merged into the next release 15:11:58 /s 16:10:19 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? 16:12:01 i think 16 outputs is max TheoStorm 16:12:35 k, I guess would be good to change the error message or something then (or do a sanity check) 16:12:52 will try with 10 outputs first 16:12:58 nonsense, thats a perfectly crystal clear error message :) 16:13:38 16 outs is max 16:14:05 :) 17:15:10 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 17:15:10 -j$(nproc) release-static. I got following errors: https://paste.debian.net/1186936/ Can somebody help me with this errors? 17:23:47 It's likely finding two different versoons of boost. 17:24:31 You may need to delete CMakeCache.txt from the build tree, cmake likes to cache a bit much. 17:24:50 Ok. I will try 17:25:36 Oh, I forgot that I remove build directory before running make release-static. 17:26:02 Then run with VERBOSE=1 to see -I -isystem -L etc. 17:29:30 Something like that: BOOST_ROOT=/Users/andres/playground/pymonero/deps/boost_1_75_0 VERBOSE=1 make -j$(nrpoc) release-static ? 17:31:40 Maybe. I always add VERBOSE=1 as a make parameter, not sure it'll get picked up from env vars. 17:38:53 Specifying BOOST_ROOT not working. Cmake used /usr/local/boost that compiled without static parameter( 17:51:17 Other software might be there, causing a -I for it. 17:53:05 What command should I run to build only static lib with "get_block_hashing_blob"  function? 17:53:17 Instead of all libs in release-static 17:56:23 make -C build/... cryptonote_basic 18:01:22 https://paste.debian.net/1186947/ Should I pay attention to this warnings? 18:02:28 I don't know. 18:38:00 bonjour everyone 18:38:36 if i wanted to make my own nodejs randomx miner how would i go about doing it 18:38:51 if i wanted to code it from complete scratch, what frameworks and stuff would i need to know? 18:40:44 Javascript and C++. It'll be slow though. 18:44:33 thanks 18:44:43 are there any resources out there I can get started with? 18:48:27 without fully emulated floating point math, you can't implement randomX in JS 18:48:35 and that would be ridiculously slow 18:50:43 but it's possible? 18:50:50 what about implementing it in python? 18:52:20 ForestMa1per: The channel #monero-pow is a good place to get help for RandomX though moneromooo and Hyc are excellent resources themselves 18:52:54 Not me. I've not really looked at it. 18:54:17 thanks, i'll head there 19:17:11 moneromooo, thanks for approval. At the same time I was adding the due comments: 19:17:12 https://github.com/monero-project/monero/pull/7402 20:28:21 How to convert blocktemplate_blob to hashing_blob? Is it difficult to write such a function on Python? 21:23:00 I want to understand how to get timestamp from block template: 0e0ea89fe08106b4e31026caf1498f39ed0889db2668ebfe5cebf50d024b363aef355a035c9d7f000000000.... 21:23:55 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? 21:38:05 How to convert varint value "a89fe08106" to timestamp integer? 21:40:45 https://paste.debian.net/hidden/465e9fa3/ 23:54:52 this guy