pascalcoin_daemon.ini 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [GLOBAL]
  2. ;SAVELOGS : Boolean
  3. ;If 1 (true) logs will be saved to a file at $HOME/PascalCoin
  4. SAVELOGS=0
  5. ;NODE_PORT : Integer (Default 4004)
  6. ;Port P2P of PascalCoin
  7. NODE_PORT=4004
  8. ;NODE_MAX_CONNECTIONS : Integer (Default 100)
  9. ;Max node connections P2P
  10. NODE_MAX_CONNECTIONS=100
  11. ;RPC_PORT : Integer (Default 4003)
  12. ;Port to use by TCP/IP JSON-RPC commands
  13. RPC_PORT=4003
  14. ;RPC_WHITELIST : String containing allowed IP's that can use port 4003. Empty=ALL
  15. RPC_WHITELIST=127.0.0.1;
  16. ;RPC_SAVELOGS : Boolean
  17. ;Save RPC commands log file $HOME/PascalCoin
  18. RPC_SAVELOGS=1
  19. ;RPC_SERVERMINER_PORT : Integer (Default 4009)
  20. ;When value<>0 will activate Server mining port using PascalCoin JSON-RPC mining protocol
  21. RPC_SERVERMINER_PORT=4009
  22. ;RPC_SERVERMINER_NAME : String
  23. ;Basic name of the miner when allowing
  24. ;If value=TIME then will set Date Time in yyyy-mm-dd hh:nn format
  25. RPC_SERVERMINER_NAME=TIME
  26. ;RPC_SERVERMINER_B58_PUBKEY : String
  27. ;Public key value to use as a server miner Public key
  28. ;If empty, will use first avaiable public key of the wallet or generate a new one
  29. RPC_SERVERMINER_B58_PUBKEY=
  30. ;RPC_SERVERMINER_MAX_CONNECTIONS : Integer
  31. ;Max connections that RPC Miner server can accept
  32. RPC_SERVERMINER_MAX_CONNECTIONS=1000
  33. ;RPC_SERVERMINER_MAX_OPERATIONS_PER_BLOCK : Integer
  34. ;Max operations included per block
  35. RPC_SERVERMINER_MAX_OPERATIONS_PER_BLOCK=5000
  36. ;RPC_SERVERMINER_MAX_ZERO_FEE_OPERATIONS : Integer
  37. ;Max operations without fee that can be included in a block
  38. ;Note: Operations with fee>0 are processed first (have more priority)
  39. RPC_SERVERMINER_MAX_ZERO_FEE_OPERATIONS=4000