Is it possible to run bitcoind without downloading the blockchain?

0

1

I'm using bitcoind on a project, and I only need to send bitcoins to myself (from one wallet to another), so trust is not a factor.

That being said, is there a way to run bitcoind without needing to download the full blockchain?

Edit: I know Bitcoin-QT runs as "full node". Does bitcoind?

Parker

Posted 2014-03-02T02:43:08.267

Reputation: 101

Answers

2

It isn't possible with the current version of Bitcoind, Bitcoin-QT is simply a GUI wrapper for Bitcoind so same applies for both.

If you need a wallet that doesn't download the full blockchain go with a thin wallet like Electrum. It does download block heards but that takes seconds. If you want to accomplish your project programmatically, consider the many libraries, such as Bitcoinj, Libbitcoin, and many others.

John T

Posted 2014-03-02T02:43:08.267

Reputation: 2 759

1Jacob, thanks for expanding on my admittedly terse answer, but it is not correct that -QT is a wrapper for bitcoind. They share common source code, but they are two independent apps. For example: you can delete bitcoind from a Windows system and -QT will still operate normally. Also, the Mac -QT doesn't even ship with bitcoind, it has to be compiled separately. Both of these illustrate that -QT is independent of bitcoind. The fact is that Satoshi and later the Bitcoin dev team felt there was value in having the client download and validate the full blockchain, so that's why it exists today.ChrisW 2014-03-02T19:20:44.233

The both operate on the same code is what I meant.John T 2014-03-02T20:05:17.707

1

No, there's no way to run bitcoind without downloading the blockchain.

ChrisW

Posted 2014-03-02T02:43:08.267

Reputation: 840

Could you expand on why?John T 2014-03-02T07:49:22.590

0

Run a testnet:

Just set your bitcoin.conf to 'testnet=1' on all the machines you are connecing together.

You then can mine and transfer "fake" Bitcoins on your private test network, not touching the official one (not downloading the blockchain)

Naturally, these coins are not usable away from the testnet that you created because you are actually creating a test blockchain that the coins are created on. Everything works the same as the normal Bitcoin client (or bitcoind).

s4w3d0ff

Posted 2014-03-02T02:43:08.267

Reputation: 201