Guest User

Untitled

a guest
Jun 17th, 2017
152
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 = 192.151.147.194:37318
  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 =  127.0.0.1:8090
  20.  
  21. # Endpoint for TLS websocket RPC to listen on
  22. # rpc-tls-endpoint =
  23.  
  24. # The TLS certificate file for this server
  25. # server-pem =
  26.  
  27. # Password for this certificate
  28. # server-pem-password =
  29.  
  30. # Block signing key to use for init witnesses, overrides genesis file
  31. # dbg-init-key =
  32.  
  33. # API user specification, may be specified multiple times
  34. # api-user =
  35.  
  36. # Set an API to be publicly available, may be specified multiple times
  37. # public-api = database_api login_api
  38.  
  39. # Plugin(s) to enable, may be specified multiple times
  40.  
  41. enable-plugin = witness account_history follow market_history private_message tags
  42. public-api = database_api login_api market_history_api tags_api follow_api network_node_api network_broadcast_api
  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: 1000)
  54. history-per-size = 1000
  55.  
  56. # Defines a range of accounts to private messages to/from as a json pair ["from","to"] [from,to)
  57. # pm-account-range =
  58.  
  59. # Enable block production, even if the chain is stale.
  60. enable-stale-production = false
  61.  
  62. # Percent of witnesses (0-99) that must be participating in order to produce blocks
  63. required-participation = false
  64.  
  65. # name of witness controlled by this node (e.g. initwitness )
  66.  
  67. witness = "orator"
  68.  
  69. # name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] )
  70. #miner = ["orator",""]
  71.  
  72. # Number of threads to use for proof of work mining
  73. # mining-threads =
  74.  
  75. # WIF PRIVATE KEY to be used by one or more witnesses or miners
  76.  
  77. private-key = 5K6......................................
  78.  
  79. # Account creation fee to be voted on upon successful POW - Minimum fee is 100.000 STEEM (written as 100000)
  80.  
  81. miner-account-creation-fee = 3000
  82.  
  83. # Maximum block size (in bytes) to be voted on upon successful POW - Max block size must be between 128 KB and 750 MB
  84. # miner-maximum-block-size =
  85.  
  86. # SBD interest rate to be vote on upon successful POW - Default interest rate is 10% (written as 1000)
  87. # miner-sbd-interest-rate =
  88.  
  89. # declare an appender named "stderr" that writes messages to the console
  90. [log.console_appender.stderr]
  91. stream=std_error
  92.  
  93. # declare an appender named "p2p" that writes messages to p2p.log
  94. [log.file_appender.p2p]
  95. filename=logs/p2p/p2p.log
  96. # filename can be absolute or relative to this config file
  97.  
  98. # route any messages logged to the default logger to the "stderr" logger we
  99. # declared above, if they are info level are higher
  100. [logger.default]
  101. level=warn
  102. appenders=stderr
  103.  
  104. # route messages sent to the "p2p" logger to the p2p appender declared above
  105. [logger.p2p]
  106. level=warn
  107. appenders=p2p
Add Comment
Please, Sign In to add comment