2
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?
I don't know, but it seems like it would be pretty easy to try. Back up your wallet.dat, of course. – Nate Eldredge – 2014-04-10T13:56:01.533
You could probably have the laptop download the blockchain from the desktop (assuming you can have them on a LAN for a suitable period of time to do the transfer). I think
– Tim S. – 2014-04-10T16:47:50.417addnode=xorconnect=xare what you want, see https://en.bitcoin.it/wiki/Running_Bitcoin for commands to connect to an IP@tim s.: But in that case the laptop will still verify and index the whole chain, which I think the asker wants to avoid. – Nate Eldredge – 2014-04-10T21:17:22.553