Advertisement
Guest User

Untitled

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