Advertisement
Guest User

Untitled

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