I’m trying to run a light bitcoind node for testing purposes on mainnet, with minimum startup time.
./bin/bitcoind
-prune=550
-txindex=0
-assumevalid=00000000000000000004c176952213ad9a228ced92f883fb4a472f20b474ca7a
-checkblocks=0
-checklevel=0
-disablewallet=1
blockheader synchronization is quite fast (<5min) but I’m not being able to start the IBD from a certain block or block height, it always starts from block=1
.
is there any way to skip the IBD verification until certain block height/block hash (thought that was what assumevalid
does, but I could be wrong!).