Guest User

Untitled

a guest
Feb 23rd, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.21 KB | None | 0 0
  1. # Endpoint for P2P node to listen on
  2. # p2p-endpoint=0.0.0.0:2001
  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 = seed.jesta.us:2001
  9. #seed-node = anyx.co:2001
  10. # seed-node = 149.56.108.203:2001
  11. #seed-node = 176.31.126.187:2001
  12. seed-node = gtg.steem.house:2001
  13.  
  14. # Pairs of [BLOCK_NUM,BLOCK_ID] that should be enforced as checkpoints.
  15. # checkpoint =
  16.  
  17. # Location of the shared memory file. Defaults to data_dir/blockchain
  18. shared-file-dir = /dev/shm/
  19.  
  20. # Size of the shared memory file. Default: 54G
  21. shared-file-size = 54G
  22.  
  23. # Endpoint for websocket RPC to listen on
  24. # rpc-endpoint = 0.0.0.0:8090
  25.  
  26. # Endpoint for TLS websocket RPC to listen on
  27. # rpc-tls-endpoint =
  28.  
  29. # Endpoint to forward write API calls to for a read node
  30. # read-forward-rpc =
  31.  
  32. # The TLS certificate file for this server
  33. # server-pem =
  34.  
  35. # Password for this certificate
  36. # server-pem-password =
  37.  
  38. # API user specification, may be specified multiple times
  39. # api-user =
  40.  
  41. # Set an API to be publicly available, may be specified multiple times
  42. public-api = database_api login_api
  43.  
  44. # Plugin(s) to enable, may be specified multiple times
  45. enable-plugin = witness
  46.  
  47. # Maximum age of head block when broadcasting tx via API
  48. max-block-age = 200
  49.  
  50. # Flush shared memory file to disk this many blocks
  51. flush = 100000
  52.  
  53. # Whether to print backtrace on SIGSEGV
  54. backtrace = yes
  55.  
  56. # Defines a range of accounts to track as a json pair ["from","to"] [from,to] Can be specified multiple times
  57. # track-account-range =
  58.  
  59. # Defines a list of operations which will be explicitly logged.
  60. # history-whitelist-ops =
  61.  
  62. # Defines a list of operations which will be explicitly ignored.
  63. # history-blacklist-ops =
  64.  
  65. # Track account statistics by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  66. account-stats-bucket-size = [60,3600,21600,86400,604800,2592000]
  67.  
  68. # How far back in time to track history for each bucker size, measured in the number of buckets (default: 100)
  69. account-stats-history-per-bucket = 100
  70.  
  71. # Which accounts to track the statistics of. Empty list tracks all accounts.
  72. account-stats-tracked-accounts = []
  73.  
  74. # Track blockchain statistics by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  75. chain-stats-bucket-size = [60,3600,21600,86400,604800,2592000]
  76.  
  77. # How far back in time to track history for each bucket size, measured in the number of buckets (default: 100)
  78. chain-stats-history-per-bucket = 100
  79.  
  80. # Database edits to apply on startup (may specify multiple times)
  81. # edit-script =
  82.  
  83. # RPC endpoint of a trusted validating node (required)
  84. # trusted-node =
  85.  
  86. # Set the maximum size of cached feed for an account
  87. follow-max-feed-size = 500
  88.  
  89. # Block time (in epoch seconds) when to start calculating feeds
  90. follow-start-feeds = 0
  91.  
  92. # Track market history by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  93. market-history-bucket-size = [15,60,300,3600,86400]
  94.  
  95. # How far back in time to track history for each bucket size, measured in the number of buckets (default: 5760)
  96. market-history-buckets-per-size = 5760
  97.  
  98. # Defines a range of accounts to private messages to/from as a json pair ["from","to"] [from,to)
  99. # pm-account-range =
  100.  
  101. # Enable block production, even if the chain is stale.
  102. enable-stale-production = false
  103.  
  104. # Percent of witnesses (0-99) that must be participating in order to produce blocks
  105. required-participation = false
  106.  
  107. # name of witness controlled by this node (e.g. initwitness )
  108. witness = "ura-soul"
  109.  
  110. # WIF PRIVATE KEY to be used by one or more witnesses or miners
  111. private-key = removed
  112.  
  113. # declare an appender named "stderr" that writes messages to the console
  114. [log.console_appender.stderr]
  115. stream=std_error
  116.  
  117. # declare an appender named "p2p" that writes messages to p2p.log
  118. [log.file_appender.p2p]
  119. filename=logs/p2p/p2p.log
  120. # filename can be absolute or relative to this config file
  121.  
  122. # route any messages logged to the default logger to the "stderr" logger we
  123. # declared above, if they are info level are higher
  124. [logger.default]
  125. level=debug
  126. appenders=stderr
  127.  
  128. # route messages sent to the "p2p" logger to the p2p appender declared above
  129. [logger.p2p]
  130. level=debug
  131. appenders=p2p
Add Comment
Please, Sign In to add comment