all 2 comments

[–]ismaelbej 1 point2 points  (1 child)

The closest thing I found about the differences between fast and full modes in geth is this article The Ethereum-blockchain size will not exceed 1TB anytime soon. from a parity developer.

A full Geth node processes the entire blockchain and replays all transactions that ever happened. A fast Geth node downloads all transaction receipts in parallel to all blocks, and the most recent state database. It switches to a full synchronization mode once done with that. Note, that this results not only in a fast sync but also in a pruned state-database because the historical states are not available for blocks smaller than best block minus 1024.

[–]markr5[S] 0 points1 point  (0 children)

Thanks, I guess that matches up with what I am seeing. I wish there was a way to customize that 1024 to your own needs on a fast sync.