14:17:24 When I see it right I need to build for a RPi zero ARMv6, I need only the monero-wallet-rpc, I don't care about the rest and I get crazy already since 5 hours because I get cross compiling not working. Is there a way to build only monero-wallet-rpc and ignore all unneeded to save time? 16:19:59 @vthor: I just tested to cross-compile for ARMv6 and it failed, but I think if you add `-D BUILD_DOCUMENTATION=OFF -D BUILD_DEBUG_UTILITIES=OFF` to the cmake command for `release-static-linux-armv6` in the Makefile and in src/CMakelists.txt remove `add_subdirectory()` for `seraphis_crypto`, `simplewallet`, `gen_multisig`, `gen_ssl_cert` and `blockchain_utilities` that should sligh 16:20:00 tly increase the speed. 17:11:01 <0​xfffc:monero.social> is there any way to get the latest hardfork version of the network, before full synchronization? 17:12:16 Like the latest supported hf version in the code, or the hf version that the blockchain is current processing? 17:13:47 <0​xfffc:monero.social> Like what is the current hf version of the network ( imagine my monerod has been sleeping for 2 years. And during start up I need the hf version of the network ) 17:17:36 https://www.getmonero.org/resources/developer-guides/daemon-rpc.html#hard_fork_info 17:18:40 That is, if you know a node with working RPC 17:19:52 For p2p connections, you can check the `top_version` field of `CORE_SYNC_DATA` 17:22:36 Which is what is done in the `process_payload_sync_data` method of the cryptonote protocol handlers to log that "peer claims higher version than we think (VERSION for HEIGHT instead of OURVERSION) - we may be forked from the network and a software upgrade may be needed, or that peer is broken or malicious" message 17:32:40 <0​xfffc:monero.social> Yes, thanks both. 17:32:40 <0​xfffc:monero.social> The place I need current network hf, p2p is not initialized. 19:09:40 thank you s​needlewoods, will try this, have finally the RPi with PiOS and network over USB running. But wait, when I get you right I will use `make -D BUILD_DOCUMENTATION=OFF -D BUILD_DEBUG_UTILITIES=OFF release-static-linux-armv6` to crosscompile? I tried until now always with `make depends target=arm-linux-gnueabi` but the first issue was in unbound that is expect a OpenSSL >= 0.9.7 and found "ONLY" 3.0.13, after that I tried to comment out checks in the 19:09:42 configure file, but after that is goes on later with ECDSA.... missing, at some point I gave up in that direcction. 20:02:58 https://matrix.monero.social/_matrix/media/v1/download/matrix.org/dMcGBoyTkkPmaumdtjTuepYi 20:04:11 2 ips are spamming the same newest block from different ports massively slowing my node sync 20:09:03 https://matrix.monero.social/_matrix/media/v1/download/matrix.org/AcTXZSZLtJobheErmrVfpgLi 20:11:14 several ips are spamming the same newest block from different ports massively slowing my node sync 20:14:58 https://matrix.monero.social/_matrix/media/v1/download/matrix.org/YZRXvEZPbIuTuGKEeOgfZRXs 20:21:11 I've banned 20 ips so far but more keep coming 20:38:06 I can open a PR for that 20:38:23 to fix some all the perf issues if you want to test it out 20:42:29 vthor no, afaik the arguments don't work for `make`, but for `cmake`. So add the `-D BUILD_DOCUMENTATION=OFF -D BUILD_DEBUG_UTILITIES=OFF` here: https://github.com/monero-project/monero/blob/master/Makefile#L117 to the `cmake` command and then call `make release-static-linux-armv6` to build. Not sure though if this works for cross-compiling (I guess it could if you have the arm to 20:42:30 olchain installed) and how this differs from your approach `make depends target=arm-linux-gnueabi`. 20:45:58 jk it didn't make it faster, the slowdown must be coming from somewhere else 20:50:02 phosphate1: can you run the command `curl /get_info | grep alt_blocks_count` plz? 21:19:10 s​needlewoods, yeah, figured out that it's not for make, wanted only to test and started compiling on the device, and it is compiling since an hours, how in your opinion it changes only slightly something will not stop, how I read that people needed 24 hours instead of the 3-4h but it could also be that the had slow sdcard.... so I will see, as long it compiles through, for x86_64 I compiled already and it worked with my extensions, so I hope it runs through 21:19:12 and works, and another day in the future I will fiddle out how to crosscompile or at least compile on a pi4 (thing that should work if I use the same sdcard) wit 8GB RAM. I wonder how long it will take to learn all the stuff with crosscompiling (I'm not really a patient person :D ) 21:19:38 thank you again s​needlewoods