Advertisement
Guest User

Untitled

a guest
Nov 21st, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.00 KB | None | 0 0
  1. ##
  2. ## bitcoin.conf configuration file. Lines beginning with # are comments.
  3. ##
  4.  
  5. # Wallet and Data settings:
  6.  
  7. # Directory that contains the blockchains
  8. datadir=/mnt/crypto-currency/bitcoin
  9.  
  10. # Load wallet file (within data directory)
  11. wallet=main-wallet.dat
  12.  
  13. # Network-related settings:
  14.  
  15. # Run on the test network instead of the real bitcoin network.
  16. #testnet=0
  17.  
  18. # Run a regression test network
  19. #regtest=0
  20.  
  21. # Connect via a SOCKS5 proxy
  22. #proxy=127.0.0.1:9050
  23.  
  24. # Bind to given address and always listen on it. Use [host]:port notation for IPv6
  25. #bind=<addr>
  26.  
  27. # Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6
  28. #whitebind=<addr>
  29.  
  30. ##############################################################
  31. ## Quick Primer on addnode vs connect ##
  32. ## Let's say for instance you use addnode=4.2.2.4 ##
  33. ## addnode will connect you to and tell you about the ##
  34. ## nodes connected to 4.2.2.4. In addition it will tell ##
  35. ## the other nodes connected to it that you exist so ##
  36. ## they can connect to you. ##
  37. ## connect will not do the above when you 'connect' to it. ##
  38. ## It will *only* connect you to 4.2.2.4 and no one else.##
  39. ## ##
  40. ## So if you're behind a firewall, or have other problems ##
  41. ## finding nodes, add some using 'addnode'. ##
  42. ## ##
  43. ## If you want to stay private, use 'connect' to only ##
  44. ## connect to "trusted" nodes. ##
  45. ## ##
  46. ## If you run multiple nodes on a LAN, there's no need for ##
  47. ## all of them to open lots of connections. Instead ##
  48. ## 'connect' them all to one node that is port forwarded ##
  49. ## and has lots of connections. ##
  50. ## Thanks goes to [Noodle] on Freenode. ##
  51. ##############################################################
  52.  
  53. # Use as many addnode= settings as you like to connect to specific peers
  54. #addnode=69.164.218.197
  55. #addnode=10.0.0.2:8333
  56.  
  57. addnode=173.31.108.79:8333
  58. addnode=124.171.164.75:8333
  59. addnode=88.238.152.170:8333
  60. addnode=73.242.201.39:8333
  61. addnode=81.169.180.9:8333
  62. addnode=59.110.50.141:10101
  63. addnode=24.171.76.137:8333
  64. addnode=125.170.189.32:8333
  65. addnode=91.37.1.187:8333
  66. addnode=188.129.102.53:8333
  67. addnode=90.230.64.156:8333
  68. addnode=27.223.201.54:8333
  69. addnode=121.43.38.26:8333
  70. addnode=46.244.52.154:8333
  71. addnode=76.175.106.199:8333
  72. addnode=66.103.169.36:8333
  73. addnode=85.214.197.165:8333
  74. addnode=149.202.184.186:8333
  75. addnode=81.155.251.247:8333
  76. addnode=149.202.177.168:8333
  77. addnode=86.13.149.80:8333
  78. addnode=94.60.167.232:8333
  79. addnode=186.18.102.252:8333
  80. addnode=66.43.209.193:8333
  81. addnode=62.101.171.109:8333
  82. addnode=58.218.200.146:8333
  83. addnode=90.149.81.79:8333
  84. addnode=188.226.141.208:8333
  85. addnode=80.34.35.221:8333
  86. addnode=82.10.189.96:8333
  87. addnode=84.112.18.49:8333
  88. addnode=88.116.212.122:8333
  89. addnode=104.34.199.125:8333
  90. addnode=95.84.153.136:8333
  91. addnode=151.66.159.120:8333
  92. addnode=109.154.254.172:30000
  93. addnode=31.41.247.133:8333
  94. addnode=84.46.4.66:8333
  95. addnode=83.249.47.62:8333
  96. addnode=78.53.0.7:8333
  97.  
  98. #nodelist
  99.  
  100. # Alternatively use as many connect= settings as you like to connect ONLY to specific peers
  101. #connect=69.164.218.197
  102. #connect=10.0.0.1:8333
  103.  
  104. # Listening mode, enabled by default except when 'connect' is being used
  105. #listen=1
  106.  
  107. # Maximum number of inbound+outbound connections.
  108. #maxconnections=
  109.  
  110. #
  111. # JSON-RPC options (for controlling a running Bitcoin/bitcoind process)
  112. #
  113.  
  114. # server=1 tells Bitcoin-Qt and bitcoind to accept JSON-RPC commands
  115. #server=0
  116. server=1
  117.  
  118. # Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6.
  119. # This option can be specified multiple times (default: bind to all interfaces)
  120. #rpcbind=<addr>
  121.  
  122. # You must set rpcuser and rpcpassword to secure the JSON-RPC api
  123. #rpcuser=Ulysseys
  124. #rpcpassword=YourSuperGreatPasswordNumber_DO_NOT_USE_THIS_OR_YOU_WILL_GET_ROBBED_385593
  125. rpcuser=coal
  126. rpcpassword=<pw>
  127.  
  128. # How many seconds bitcoin will wait for a complete RPC HTTP request.
  129. # after the HTTP connection is established.
  130. #rpcclienttimeout=30
  131.  
  132. # By default, only RPC connections from localhost are allowed.
  133. # Specify as many rpcallowip= settings as you like to allow connections from other hosts,
  134. # either as a single IPv4/IPv6 or with a subnet specification.
  135.  
  136. # NOTE: opening up the RPC port to hosts outside your local trusted network is NOT RECOMMENDED,
  137. # because the rpcpassword is transmitted over the network unencrypted.
  138.  
  139. # server=1 tells Bitcoin-Qt to accept JSON-RPC commands.
  140. # it is also read by bitcoind to determine if RPC should be enabled
  141. #rpcallowip=10.1.1.34/255.255.255.0
  142. #rpcallowip=1.2.3.4/24
  143. #rpcallowip=2001:db8:85a3:0:0:8a2e:370:7334/96
  144. rpcallowip=192.168.0.0/24
  145.  
  146. # Listen for RPC connections on this TCP port:
  147. #rpcport=8332
  148. rpcport=3859
  149.  
  150. # You can use Bitcoin or bitcoind to send commands to Bitcoin/bitcoind
  151. # running on another host using this option:
  152. #rpcconnect=127.0.0.1
  153.  
  154. # Transaction Fee Changes in 0.10.0
  155.  
  156. # Send transactions as zero-fee transactions if possible (default: 0)
  157. #sendfreetransactions=0
  158.  
  159. # Create transactions that have enough fees (or priority) so they are likely to begin confirmation within n blocks (default: 1).
  160. # This setting is over-ridden by the -paytxfee option.
  161. #txconfirmtarget=n
  162.  
  163. # Miscellaneous options
  164.  
  165. # Pre-generate this many public/private key pairs, so wallet backups will be valid for
  166. # both prior transactions and several dozen future transactions.
  167. #keypool=100
  168.  
  169. # Pay an optional transaction fee every time you send bitcoins. Transactions with fees
  170. # are more likely than free transactions to be included in generated blocks, so may
  171. # be validated sooner.
  172. #paytxfee=0.00
  173.  
  174. # User interface options
  175.  
  176. # Start Bitcoin minimized
  177. #min=1
  178.  
  179. # Minimize to the system tray
  180. #minimizetotray=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement