Security concerns when downloading the block chain from a 3rd party source?

0

It takes very long until bitcoin-core has downloaded the whole block chain. So I decided to download the block chain files via a bittorrent published by this website: http://www.getbitcoinblockchain.com

After the download was finished I noticed that the md5 checksums of the files from the torrent were different then of the files from bitcoin-core.

Why could that be?

Are there any security related concerns of using a block chain from a 3rd party source?

eztam

Posted 2017-11-30T18:33:50.607

Reputation: 145

Answers

1

After the download was finished I noticed that the md5 checksums of the files from the torrent were different then of the files from bitcoin-core.

Why could that be?

The download they provide is a Bitcoin Core data directory. The data directories of two nodes are not likely to be the same.

This is because blocks are downloaded out of order. Since blocks are written to disk in the order that they are received, the blocks will be in a different order from node to node and thus the hash of all of the data will be different.

Furthermore, orphan blocks causes the data to be different because some nodes might have heard of an orphan block but another node did not.

Are there any security related concerns of using a block chain from a 3rd party source?

Yes. They could be providing you a false blockchain, i.e. one that is valid but not the blockchain that all other nodes are following.

Andrew Chow

Posted 2017-11-30T18:33:50.607

Reputation: 40 910