Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.17 KB | None | 0 0
  1. # litecoin.conf configuration file. Lines beginning with # are comments.
  2.  
  3.  
  4. # Network-related settings:
  5.  
  6. # Run on the test network instead of the real litecoin network.
  7. #testnet=0
  8.  
  9. # Connect via a socks4 proxy
  10. #proxy=127.0.0.1:9050
  11.  
  12. ##############################################################
  13. ## Quick Primer on addnode vs connect ##
  14. ## Let's say for instance you use addnode=4.2.2.4 ##
  15. ## addnode will connect you to and tell you about the ##
  16. ## nodes connected to 4.2.2.4. In addition it will tell ##
  17. ## the other nodes connected to it that you exist so ##
  18. ## they can connect to you. ##
  19. ## connect will not do the above when you 'connect' to it. ##
  20. ## It will *only* connect you to 4.2.2.4 and no one else.##
  21. ## ##
  22. ## So if you're behind a firewall, or have other problems ##
  23. ## finding nodes, add some using 'addnode'. ##
  24. ## ##
  25. ## If you want to stay private, use 'connect' to only ##
  26. ## connect to "trusted" nodes. ##
  27. ## ##
  28. ## If you run multiple nodes on a LAN, there's no need for ##
  29. ## all of them to open lots of connections. Instead ##
  30. ## 'connect' them all to one node that is port forwarded ##
  31. ## and has lots of connections. ##
  32. ## Thanks goes to [Noodle] on Freenode. ##
  33. ##############################################################
  34.  
  35. # Use as many addnode= settings as you like to connect to specific peers
  36. #addnode=69.164.218.197
  37. #addnode=10.0.0.2:9333
  38.  
  39. # ... or use as many connect= settings as you like to connect ONLY
  40. # to specific peers:
  41. #connect=69.164.218.197
  42. #connect=10.0.0.1:9333
  43.  
  44.  
  45. # Maximum number of inbound+outbound connections.
  46. #maxconnections=
  47.  
  48.  
  49. # JSON-RPC options (for controlling a running Litecoin/litecoind process)
  50.  
  51. # server=1 tells Litecoin-QT to accept JSON-RPC commands.
  52. #server=0
  53.  
  54. # You must set rpcuser and rpcpassword to secure the JSON-RPC api
  55. #rpcuser=Ulysseys
  56. #rpcpassword=YourSuperGreatPasswordNumber_DO_NOT_USE_THIS_OR_YOU_WILL_GET_ROBBED_385593
  57.  
  58. # How many seconds litecoin will wait for a complete RPC HTTP request.
  59. # after the HTTP connection is established.
  60. #rpctimeout=30
  61.  
  62. # By default, only RPC connections from localhost are allowed. Specify
  63. # as many rpcallowip= settings as you like to allow connections from
  64. # other hosts (and you may use * as a wildcard character).
  65. # NOTE: opening up the RPC port to hosts outside your local
  66. # trusted network is NOT RECOMMENDED, because the rpcpassword
  67. # is transmitted over the network unencrypted.
  68. #rpcallowip=10.1.1.34
  69. #rpcallowip=192.168.1.*
  70.  
  71. # Listen for RPC connections on this TCP port:
  72. #rpcport=9332
  73.  
  74. # You can use Litecoin or litecoind to send commands to Litecoin/litecoind
  75. # running on another host using this option:
  76. #rpcconnect=127.0.0.1
  77.  
  78. # Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate
  79. # with Litecoin -server or litecoind
  80. #rpcssl=1
  81.  
  82. # OpenSSL settings used when rpcssl=1
  83. #rpcsslciphers=TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH
  84. #rpcsslcertificatechainfile=server.cert
  85. #rpcsslprivatekeyfile=server.pem
  86.  
  87.  
  88. # Miscellaneous options
  89.  
  90. # Set gen=1 to attempt to generate litecoins
  91. #gen=0
  92.  
  93. # Pre-generate this many public/private key pairs, so wallet backups will be valid for
  94. # both prior transactions and several dozen future transactions.
  95. #keypool=100
  96.  
  97. # Pay an optional transaction fee every time you send litecoins. Transactions with fees
  98. # are more likely than free transactions to be included in generated blocks, so may
  99. # be validated sooner.
  100. #paytxfee=0.00
  101.  
  102. # Allow direct connections for the 'pay via IP address' feature.
  103. #allowreceivebyip=1
  104.  
  105. # Allows litecoind to operate with the BDB wallet disabled.
  106. #disablewallet=1
  107.  
  108. # User interface options
  109.  
  110. # Start Litecoin minimized
  111. #min=1
  112.  
  113. # Minimize to the system tray
  114. #minimizetotray=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement