08:33:47 Hey one question. Does Monerod on loglevel 0 store ANYTHING else about outgoing transactions anywhere? The documentation states the following: 08:33:48 "0-4 with 0 being minimal logging and 4 being full tracing. Defaults to 0. These are general presets and do not directly map to severity levels. For example, even with minimal 0, you may see some most important INFO entries." 08:34:12 How can I properly secure my node physically? 08:35:37 Oh sorry just realized that I'm on Dev 08:52:36 to disable the log completely, you can delete contents of the file and set it to write protected (tested on windows) 09:40:58 How about `--log-file=/dev/null` 😬 09:48:10 Thanks! I didnt See Option to specify the log file in documentation 11:15:23 Thats what i do :D 11:16:01 loglevel 0 stores what you see when node is running 11:16:45 Reorgs, disconnects, some errors, sync status etc 11:17:29 you can change the loglevel and watch the difference live 11:17:30 `set_log 1` for example 18:59:51 whats the wallet logic for (re)syncing from a certain restore height? 19:00:13 from my experience it never syncs from the exact block i set and has a rather large buffer 19:54:15 valldrac 20:00:44 It's to avoid pointlessly scanning all the start of the chain if you know roughly when you created your wallet. 20:23:01 moo: i know what a restore height does. thats not my question 20:23:37 im asking what happens when restoring from X restore height - is there a buffer of some kind 20:23:49 ive never seen a wallet start sycing from the exact height i set 20:26:12 There is a buffer, and I think it is larger when given a date rather than height. 20:26:40 whats the reason for the buffer? restore height is very specific 20:28:55 it leads to more pointless scanning, especially on tor connection 20:37:04 Buffer might be different over restricted rpc, or am i remembering things incorrectly 20:38:02 if its bypassable, i assume the --trusted-daemon flag might do that 20:38:34 ofrn shutting up now, because i dont know either of these things for a fact. Thx 21:00:44 Somehow. It doesn't begin right at the restore height. Instead, the wallet first does a fast refresh, fetching only the block hashes from the most recent checkpoint (or genesis if the restore height is less than the checkpoint), and it keeps doing that until it gets to the restore height. Then, it fetches entire blocks and starts scanning for txs as usual 21:02:59 The checkpoint is updated on every release. Latest on mainnet is 2661600 https://github.com/monero-project/monero/blob/master/src/checkpoints/checkpoints.cpp#L242