Guest User

Untitled

a guest
Nov 12th, 2018
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. # This config should be placed in following path:
  2. # ~/.bitcoin/bitcoin_testnet3.conf
  3.  
  4. # [core]
  5. # Specify the location of the configuration file. To use non-default location, create a default location config file containing this setting.
  6. conf=~/.bitcoind/bitcoin_testnet3.conf
  7. # Specify a non-default location to store blockchain and other data.
  8. datadir=/mnt/bitcoin
  9.  
  10. # [debug]
  11. # Run this node on the Bitcoin Test Network.
  12. testnet=1
  13.  
  14. # [rpc]
  15. # Accept command line and JSON-RPC commands.
  16. server=1
  17. # Accept public REST requests.
  18. rest=1
  19. # RPC user
  20. rpcuser=rpcuser
  21. # RPC password
  22. rpcpassword=rpcpass
  23. # RPC allow ip (allow all)
  24. rpcallowip=0.0.0.0/0
  25. # RPC bind
  26. rpcbind=0.0.0.0
  27. # get all transaction
  28. txindex=1
  29.  
  30. # This config should be placed in following path:
  31. # ~/.bitcoin/bitcoin_mainnet.conf
  32.  
  33. # [core]
  34. # Specify the location of the configuration file. To use non-default location, create a default location config file containing this setting.
  35. conf=~/.bitcoind/bitcoin_mainnet.conf
  36. # Specify a non-default location to store blockchain and other data.
  37. datadir=/mnt/bitcoin/mainnet
  38.  
  39. # [debug]
  40. # Run this node on the Bitcoin Test Network.
  41. #testnet=1
  42.  
  43. # [rpc]
  44. # Accept command line and JSON-RPC commands.
  45. server=1
  46. # Accept public REST requests.
  47. rest=1
  48. # RPC user
  49. rpcuser=rpcuser
  50. # RPC password
  51. rpcpassword=rpcpass
  52. # RPC allow ip (allow all)
  53. rpcallowip=0.0.0.0/0
  54. # RPC bind
  55. rpcbind=0.0.0.0
  56. # get all transaction
  57. txindex=1
Add Comment
Please, Sign In to add comment