I have two computers with two different bitcoin-qt wallets:
- Very heavy-weight desktop with a great internet connection.
- Less powerful laptop with relatively slow internet.
I would like to download AND validate the blockchain only on the desktop. I can trust that blockchain to contain only valid data because it actually validates the input and it is a source under my control. So I figure I don't need to do the same for the laptop. How can I syncronize the blockchain on the laptop? Could I rsync
the chainstate
, blocks
, and database
directories for instance? And then I rescan on my laptop and we should be good to go! Would this work?
addnode=x
orconnect=x
are what you want, see https://en.bitcoin.it/wiki/Running_Bitcoin for commands to connect to an IP – Tim S. Apr 10 '14 at 16:47