Can I run bitcoind without downloading new blocks?

4

1

I want to run bitcoind to interact with the daemon, but having bitcoin download new blocks and verify them is taking a toll on my CPU. I do not want the latest data - I just want the daemon to be running. Is there a way to prevent bitcoin from downloading new data?

Reinstate Monica

Posted 2014-04-16T12:12:05.363

Reputation: 913

Question was closed 2014-04-19T07:16:15.523

1Use the -proxy option with some not existing proxy.Jori 2014-04-16T15:17:19.193

Answers

5

Essentially, you want to run bitcoind while connected to the network to download all the blocks, then disconnect it from the network so it no longer downloads new data. There are several possible ways to do this, from least to most drastic:

  • Use the -proxy option to specify a proxy that does not exist.
  • Use a software firewall to prevent bitcoind from communicating with the network.
  • Run bitcoind in a virtual machine and turn off its network access.
  • Physically disconnect the machine from the network.

Greg Hewgill

Posted 2014-04-16T12:12:05.363

Reputation: 3 321