Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 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 = muse-seed.lafona.net:33333
  9. seed-node = 45.79.206.79:33333
  10. seed-node = muse.roelandp.nl:33333
  11. seed-node = muse.agoric.systems:33333
  12. seed-node = 5.9.18.213:33333
  13. seed-node = muse-seed.xeldal.com:33333
  14. seed-node = muse.rondonson.com:33333
  15. seed-node = 138.197.68.175:33333
  16. seed-node = seed.musenodes.com:33333
  17. seed-node = muse-seed.altcap.io:33333
  18.  
  19. # Pairs of [BLOCK_NUM,BLOCK_ID] that should be enforced as checkpoints.
  20. # checkpoint =
  21.  
  22. # Endpoint for websocket RPC to listen on
  23. rpc-endpoint = 0.0.0.0:8090
  24.  
  25. # Endpoint for TLS websocket RPC to listen on
  26. # rpc-tls-endpoint =
  27.  
  28. # The TLS certificate file for this server
  29. # server-pem =
  30.  
  31. # Password for this certificate
  32. # server-pem-password =
  33.  
  34. # Block signing key to use for init witnesses, overrides genesis file
  35. # dbg-init-key =
  36.  
  37. # File to read Genesis State from
  38. # genesis-json =
  39.  
  40. # API user specification, may be specified multiple times
  41. # api-user =
  42.  
  43. # Set an API to be publicly available, may be specified multiple times
  44. public-api = database_api login_api
  45.  
  46. # Plugin(s) to enable, may be specified multiple times
  47. enable-plugin = witness account_history
  48.  
  49. # Defines a range of accounts to track as a json pair ["from","to"] [from,to)
  50. # track-account-range =
  51.  
  52. # RPC endpoint of a trusted validating node (required)
  53. # trusted-node =
  54.  
  55. # Track market history by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  56. bucket-size = [15,60,300,3600,86400]
  57.  
  58. # How far back in time to track history for each bucket size, measured in the number of buckets (default: 5760)
  59. history-per-size = 5760
  60.  
  61. # Defines a range of accounts to private messages to/from as a json pair ["from","to"] [from,to)
  62. # pm-account-range =
  63.  
  64. # Enable block production, even if the chain is stale.
  65. enable-stale-production = false
  66.  
  67. # Percent of witnesses (0-99) that must be participating in order to produce blocks
  68. required-participation = false
  69.  
  70. # name of witness controlled by this node (e.g. initwitness )
  71. witness ="educatedwarrior"
  72.  
  73. # WIF PRIVATE KEY to be used by one or more witnesses or miners
  74. private-key = XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  75.  
  76. # declare an appender named "stderr" that writes messages to the console
  77. [log.console_appender.stderr]
  78. stream=std_error
  79.  
  80. # declare an appender named "p2p" that writes messages to p2p.log
  81. [log.file_appender.p2p]
  82. filename=logs/p2p/p2p.log
  83. # filename can be absolute or relative to this config file
  84.  
  85. # route any messages logged to the default logger to the "stderr" logger we
  86. # declared above, if they are info level are higher
  87. [logger.default]
  88. level=warn
  89. appenders=stderr
  90.  
  91. # route messages sent to the "p2p" logger to the p2p appender declared above
  92. [logger.p2p]
  93. level=warn
  94. appenders=p2p (edited)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement