11:28:34 I have updated https://github.com/monero-project/monero/pull/6111/files at last, randomx functional tests. If anyone has ideas for other special cases, let me know. 12:20:31 getting this on master and release: https://paste.centos.org/view/raw/2489e9fc 12:21:15 gots my blockchain erkns! 12:25:12 and then this 12:25:12 https://paste.centos.org/view/raw/7a52568f 12:25:19 im trying to solo mine from xmrig to daemon 12:39:06 gingeropolous: (i think that...) it's trying to allocate huge pages and can't 12:39:44 you can increase vm.nr_hugepages sysctl, or make it stop spamming with `set_log -stacktrace`. there is an environment variable to tell it to not try allocating with huge pages, but it didn't do anything for me :( 12:41:44 MONERO_RANDOMX_UMASK=1 12:45:47 well changing the user of the task to root didn't fix things 12:47:10 ah, ok. xmrig knows how to do it itself, but the daemon doesn't ... ? 12:47:28 if you run xmrig as root i think it'll try and enable them for you 12:47:44 it should be safe to ignore the messages in your daemon, at least i did until my log file got to be a few gigabytes in size lol 12:50:13 Did you monkey with the log settings or is there a bug in the rotation ? 12:50:58 i didn't monkey with log settings 12:51:31 That was for asymptotically. 12:51:51 (beyond set_log -stacktrace) 12:52:02 It should not grow beyond ~100 MB. 12:52:02 i think i only used --log-file and --log-level, then i made the system logrotate sort it out 12:52:07 ah. sorry. well, increasing huge pages to 1024 didn't do anything 12:52:37 OK, maybe --log-file disables rotation. 12:53:12 gingeropolous: you might need more. for 1 dataset and 24 mining threads i need 1193 16:19:54 Does anyone have a testnet node I can use for IBD? Can't even get sync to start, guess the seed nodes are down/overwhelmed 16:20:03 s/specify/use 16:31:30 fort3hlulz: sorry my seednode was down for maintenance, I've just brought it back up 16:31:38 just give it a bit to catch up 16:56:22 fort3hlulz: Height: 1487376/1487376 (100.0%) on testnet 16:56:26 should be fine now 17:00:37 yup, just started syncing a bit ago! 17:00:39 Thanks. 17:25:58 Is stagenet used at all? I'm setting up seeding nodes for both just to give a bit more backbone to those networks. 17:28:50 Stagenet is used, yes. 17:31:25 sweet, thanks 19:33:58 Is something special with keccak_256 as implemented in the Monero code? I have luigi's JavaScript implementation on https://xmr.llcoins.net/addresstests.html calculating different hashes than a C# implementation I grabed somewhere which gives the same as this here: http://emn178.github.io/online-tools/keccak_256.html 19:37:10 It also gives a different value for the empty string: c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 instead of c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 19:37:21 (according to https://en.wikipedia.org/w/index.php?title=SHA-3&oldid=676252215#Examples_of_SHA-3_and_Keccak_variants) 19:37:42 Monero has one of the original pre-standard submissions. NIST changed a couple things IIRC, padding and... something else. 19:38:06 So "Keccak" really means "one of the submissions as amended". 19:38:20 Yeah, I tried to play with the padding, to no avail. So maybe it's "something else" :) 19:38:51 yeah it's something else 19:38:57 I saw where Luigi got its code, maybe a file compare will lead me into the right direction 19:41:41 There have been occasional ideas to move to standard SHA3, but we'd still need to haul around the old keccak code anyway 19:41:42 shrug 19:44:51 Anyway, if somebody has a pointer laying around somewhere which version it is exactly, I would be grateful. 19:45:39 src/crypto/keccak.c :P 19:45:57 Try monero.stackexchange.com. 19:47:19 Alright, thanks. Maybe I will land there after an attempt on my own. 19:52:10 Hmmm, that comment in that keccak.c file sound promising: "A baseline Keccak (3rd round) implementation" 20:04:48 it's just padding I think 20:22:46 yeah just padding changes 20:25:19 your two empty string messages are the same too... 20:26:56 my code gives the same values as emn178 20:27:06 I think it's the same code anyway so that would make sense 20:27:55 var KECCAK_PADDING = [1, 256, 65536, 16777216]; 20:27:55 var PADDING = [6, 1536, 393216, 100663296]; 20:28:08 padding is just x6 looks like