So, I want to migrate to gain disk space thanks to blockchain pruning (it seems that it goes from ~11.4 GiB to ~3.3 GiB) and try the difference of sync speed.
Is this already documented somewhere? (how to jump from the different ethereum implementations)
Is there something else than the private keys that might need to be migrated? If so, how to proceed?
geth exportto export the blockchain data usinggeth. But I don't know ifparitycan import the exported file though. – Loi.Luu Apr 01 '16 at 11:10rm -rf $ETHEREUM_DATADIR/chaindataand restart withgeth --fast, that should reduce the disk usage significantly. – Jeffrey W. Apr 23 '16 at 13:28