04:41:31 "5" 08:40:13 hyc interesting RandomX crash: https://www.reddit.com/r/monerosupport/comments/12aml04/monerod_unexpected_closure_error_crash_help/ - it crashed in __munmap on MacOS: https://logpaste.com/ZmR2Ehup 08:40:54 so randomx_create_vm doesn't always return an error when it fails, it can still crash the whole program 08:42:45 it crashed when doing "delete vm;" in catch section of try...catch clause 12:19:26 but it should never crash for that reason. sounds like it tried to munmap a region that wasn't successfully mapped in the first place? 12:48:38 __munmap was called from VM destructor, which means constructor finished successfully, so VM was created and memory was mapped, but an exception was triggered later 12:49:37 so maybe vm->setCache crashed 12:53:38 macOS runs with secureJit, maybe this triggered an exception