Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 655 Bytes

Importing-a-Chain-from-Geth.md

File metadata and controls

20 lines (12 loc) · 655 Bytes
title
Importing a Chain from Geth

When coming from Geth, be aware that the --geth option provides you with the highest degree of compatibility to Geth's behaviour, even at the cost of speed, security, functionality and standardisation.

Parity version 1.3 and above (Snapshot sync)

If you don't care about historical transaction information, just use our state-snapshotting to get synced really fast.

Parity version 1.2 and above

On 1.2 and above, use Geth's export feature along with Parity's import:

mkfifo /tmp/chain.rlp && geth export /tmp/chain.rlp &

sleep 1 && parity import /tmp/chain.rlp