Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. #NOTE: This configuration file is for testing with regtest only
  2. #For mainnet usage, running a JoinMarket script will create the default file
  3. [BLOCKCHAIN]
  4. blockchain_source = regtest
  5. rpc_host = localhost
  6. rpc_port = 18332
  7. rpc_user = bitcoinrpc
  8. rpc_password = 123456abcdef
  9. network = testnet
  10. bitcoin_cli_cmd = bitcoin-cli
  11. notify_port = 62612
  12. [MESSAGING]
  13. host = localhost, localhost
  14. hostid = localhost1, localhost2
  15. channel = joinmarket-pit, joinmarket-pit
  16. port = 6667, 6668
  17. usessl = false, false
  18. socks5 = false, false
  19. socks5_host = localhost, localhost
  20. socks5_port = 9150, 9150
  21. [LOGGING]
  22. console_log_level = DEBUG
  23. [POLICY]
  24. # for dust sweeping, try merge_algorithm = gradual
  25. # for more rapid dust sweeping, try merge_algorithm = greedy
  26. # for most rapid dust sweeping, try merge_algorithm = greediest
  27. # but don't forget to bump your miner fees!
  28. merge_algorithm = default
  29. # the fee estimate is based on a projection of how many satoshis
  30. # per kB are needed to get in one of the next N blocks, N set here
  31. # as the value of 'tx_fees'. This estimate can be extremely high
  32. # if you set N=1, so we choose N=3 for a more reasonable figure,
  33. # as our default. Note that for clients not using a local blockchain
  34. # instance, we retrieve an estimate from the API at cointape.com, currently.
  35. tx_fees = 3
  36. minimum_makers = 2
  37. taker_utxo_retries = 3
  38. taker_utxo_age = 1
  39. taker_utxo_amtpercent = 20
  40. accept_commitment_broadcasts = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement