Advertisement
Guest User

Untitled

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