How to most efficiently keep in sync blockchain on offline computer (including through bitcoin-qt upgrades)?

0

I have bitcoin-qt running on online computer. I want to:

  1. copy blockchain to offline computer (preferably using WORM media for security reasons)
  2. from time to time update offline copy with newest blocks with smallest effort. Smallest effort means - among others - that I don't want to re-record whole blockchain from online computer to media every time and would prefer incremental copy instead.

The main obstacle that I encountered until now was that - sometimes - when I updated bitcoin-qt on online computer, the 'blocks' directory was wiped out. Then whole blockchain has been re-downloaded, preventing me from copying new blocks incrementally (because for some reason new blk*.dat files had different size/content then previous).

cryptogopher

Posted 2019-03-12T12:44:56.983

Reputation: 1

There are wallets that explicitly support cold wallets (example) - maybe looking at how those work would help?

RedGrittyBrick 2019-03-12T16:38:05.607

@RedGrittyBrick the idea is to allow for verification of transaction history on offline computer, so cold wallet support is not enough.cryptogopher 2019-03-12T22:04:55.633

Ah OK. Interesting project.RedGrittyBrick 2019-03-13T08:55:40.513

No answers