Advertisement
Guest User

Untitled

a guest
Jun 18th, 2017
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Endpoint for P2P node to listen on
  2. # p2p-endpoint =
  3.  
  4. # Maxmimum number of incoming connections on P2P endpoint
  5. # p2p-max-connections =
  6.  
  7. # P2P nodes to connect to on startup (may specify multiple times)
  8. # seed-node =
  9.  
  10. seed-node = 173.208.220.178:4243
  11. seed-node = 69.197.155.42:4243
  12. seed-node = 95.85.35.11:4242
  13. seed-node = 69.30.229.2:4243
  14.  
  15. # Pairs of [BLOCK_NUM,BLOCK_ID] that should be enforced as checkpoints.
  16. # checkpoint =
  17.  
  18. # Endpoint for websocket RPC to listen on
  19. # rpc-endpoint =
  20.  
  21. rpc-endpoint = 127.0.0.1:8090
  22.  
  23. # Endpoint for TLS websocket RPC to listen on
  24. # rpc-tls-endpoint =
  25.  
  26. # The TLS certificate file for this server
  27. # server-pem =
  28.  
  29. # Password for this certificate
  30. # server-pem-password =
  31.  
  32. # Block signing key to use for init witnesses, overrides genesis file
  33. # dbg-init-key =
  34.  
  35. # API user specification, may be specified multiple times
  36. # api-user =
  37.  
  38. # Set an API to be publicly available, may be specified multiple times
  39. public-api = database_api login_api market_history_api tags_api follow_api
  40.  
  41. # Plugin(s) to enable, may be specified multiple times
  42. enable-plugin = witness account_history follow market_history private_message tags
  43.  
  44. # Defines a range of accounts to track as a json pair ["from","to"] [from,to)
  45. # track-account-range =
  46.  
  47. # RPC endpoint of a trusted validating node (required)
  48. # trusted-node =
  49.  
  50. # Track market history by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  51. bucket-size = [15,60,300,3600,86400]
  52.  
  53. # How far back in time to track history for each bucket size, measured in the number of buckets (default: 5760)
  54. history-per-size = 5760
  55.  
  56. # Defines a range of accounts to private messages to/from as a json pair ["from","to"] [from,to)
  57.  
  58. # Enable block production, even if the chain is stale.
  59. enable-stale-production = false
  60.  
  61. # Percent of witnesses (0-99) that must be participating in order to produce blocks
  62. required-participation = false
  63.  
  64. # name of witness controlled by this node (e.g. initwitness )
  65. # witness =
  66.  
  67. witness = "otherwitness"
  68.  
  69. # name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] )
  70. # miner =
  71.  
  72. miner = ["orator","5H"]
  73.  
  74. # Number of threads to use for proof of work mining
  75. # mining-threads =
  76.  
  77. mining-threads = 8
  78.  
  79. # WIF PRIVATE KEY to be used by one or more witnesses or miners
  80. private-key = 5J
  81.  
  82. # Account creation fee to be voted on upon successful POW - Minimum fee is 100.000 STEEM (written as 100000)
  83.  
  84. miner-account-creation-fee = 3000
  85.  
  86. # Maximum block size (in bytes) to be voted on upon successful POW - Max block size must be between 128 KB and 750 MB
  87. # miner-maximum-block-size =
  88.  
  89. # SBD interest rate to be vote on upon successful POW - Default interest rate is 10% (written as 1000)
  90. # miner-sbd-interest-rate =
  91.  
  92. # declare an appender named "stderr" that writes messages to the console
  93. [log.console_appender.stderr]
  94. stream=std_error
  95.  
  96. # declare an appender named "p2p" that writes messages to p2p.log
  97. [log.file_appender.p2p]
  98. filename=logs/p2p/p2p.log
  99. # filename can be absolute or relative to this config file
  100.  
  101. # route any messages logged to the default logger to the "stderr" logger we
  102. # declared above, if they are info level are higher
  103. [logger.default]
  104. level=warn
  105. appenders=stderr
  106.  
  107. # route messages sent to the "p2p" logger to the p2p appender declared above
  108. [logger.p2p]
  109. level=warn
  110. appenders=p2p
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement