Advertisement
Guest User

Untitled

a guest
Aug 18th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  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 = 52.63.172.229:2001
  9. seed-node = steem-seed1.abit-more.com:2001
  10. seed-node = 212.117.213.186:2016
  11. seed-node = seed.riversteem.com:2001
  12. seed-node = 52.74.152.79:2001
  13. seed-node = steemd.pharesim.me:2001
  14. seed-node = seed.steemed.net:2001
  15. seed-node = steem.clawmap.com:2001
  16.  
  17. # Pairs of [BLOCK_NUM,BLOCK_ID] that should be enforced as checkpoints.
  18. # checkpoint =
  19.  
  20. # Endpoint for websocket RPC to listen on
  21. # rpc-endpoint =
  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
  40.  
  41. # Plugin(s) to enable, may be specified multiple times
  42. enable-plugin = witness account_history
  43.  
  44. # JSON list of [nblocks,nseconds] pairs, see doc/bcd-trigger.md
  45. bcd-trigger = [[0,10],[85,300]]
  46.  
  47. # Defines a range of accounts to track as a json pair ["from","to"] [from,to]
  48. # track-account-range =
  49.  
  50. # Ignore posting operations, only track transfers and account updates
  51. # filter-posting-ops =
  52.  
  53. # Database edits to apply on startup (may specify multiple times)
  54. # edit-script =
  55.  
  56. # RPC endpoint of a trusted validating node (required)
  57. # trusted-node =
  58.  
  59. # Set the maximum size of cached feed for an account
  60. follow-max-feed-size = 500
  61.  
  62. # Track market history by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  63. bucket-size = [15,60,300,3600,86400]
  64.  
  65. # How far back in time to track history for each bucket size, measured in the number of buckets (default: 5760)
  66. history-per-size = 5760
  67.  
  68. # Defines a range of accounts to private messages to/from as a json pair ["from","to"] [from,to)
  69. # pm-account-range =
  70.  
  71. # Enable block production, even if the chain is stale.
  72. enable-stale-production = false
  73.  
  74. # Percent of witnesses (0-99) that must be participating in order to produce blocks
  75. required-participation = false
  76.  
  77. # name of witness controlled by this node (e.g. initwitness )
  78. witness = "myusername"
  79.  
  80. # name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] )
  81. miner = ["myusername","5xxxx...."]
  82.  
  83. # Number of threads to use for proof of work mining
  84. mining-threads = 4
  85.  
  86. # WIF PRIVATE KEY to be used by one or more witnesses or miners
  87. # private-key =
  88.  
  89. # Account creation fee to be voted on upon successful POW - Minimum fee is 100.000 STEEM (written as 100000)
  90. # miner-account-creation-fee =
  91.  
  92. # Maximum block size (in bytes) to be voted on upon successful POW - Max block size must be between 128 KB and 750 MB
  93. # miner-maximum-block-size =
  94.  
  95. # SBD interest rate to be vote on upon successful POW - Default interest rate is 10% (written as 1000)
  96. # miner-sbd-interest-rate =
  97.  
  98. # declare an appender named "stderr" that writes messages to the console
  99. [log.console_appender.stderr]
  100. stream=std_error
  101.  
  102. # declare an appender named "p2p" that writes messages to p2p.log
  103. [log.file_appender.p2p]
  104. filename=logs/p2p/p2p.log
  105. # filename can be absolute or relative to this config file
  106.  
  107. # route any messages logged to the default logger to the "stderr" logger we
  108. # declared above, if they are info level are higher
  109. [logger.default]
  110. level=warn
  111. appenders=stderr
  112.  
  113. # route messages sent to the "p2p" logger to the p2p appender declared above
  114. [logger.p2p]
  115. level=warn
  116. appenders=p2p
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement