| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- ## minerd configuration file
- ##
- ## Please make sure you go through all the settings so you can configure
- ## your daemon properly.
- ##
- ## The default values are left commented. They can be overridden either by
- ## uncommenting, or by using the command-line.
- # Number of nonces to execute in system hashrate benchmark
- #bench = 1000
- # Flag indicating whether to run miner in light mode
- light_mode = false
- # Flag indicating whether to run miner with Large Pages
- large_pages = false
- # Flag indicating whether to run miner with secure access to JIT memory (if supported)
- secure = false
- # PoW miner number of threads to use
- #threads = 4
- # Assign full L3 cache to CPU
- cache_qos = false
- # Polling rate to ask darkfid for mining jobs
- #polling_rate = 2
- # Stop mining at given height (0 mines forever)
- #stop_at_height = 0
- # Blockchain network to use
- network = "testnet"
- # Localnet blockchain network configuration
- [network_config."localnet"]
- # Wallet mining address to receive mining rewards
- recipient = "YOUR_WALLET_ADDRESS_HERE"
- # Optional contract spend hook to use in the mining reward
- #spend_hook = "YOUR_SPEND_HOOK_HERE"
- # Optional contract user data to use in the mining reward.
- # This is not arbitrary data.
- #user_data = "YOUR_USER_DATA_HERE"
- # darkfid JSON-RPC endpoint
- endpoint = "tcp://127.0.0.1:8240"
- # Testnet blockchain network configuration
- [network_config."testnet"]
- # Wallet mining address to receive mining rewards
- recipient = "YOUR_WALLET_ADDRESS_HERE"
- # Optional contract spend hook to use in the mining reward
- #spend_hook = "YOUR_SPEND_HOOK_HERE"
- # Optional contract user data to use in the mining reward.
- # This is not arbitrary data.
- #user_data = "YOUR_USER_DATA_HERE"
- # darkfid JSON-RPC endpoint
- endpoint = "tcp://127.0.0.1:8340"
- # Mainnet blockchain network configuration
- [network_config."mainnet"]
- # Wallet mining address to receive mining rewards
- recipient = "YOUR_WALLET_ADDRESS_HERE"
- # Optional contract spend hook to use in the mining reward
- #spend_hook = "YOUR_SPEND_HOOK_HERE"
- # Optional contract user data to use in the mining reward.
- # This is not arbitrary data.
- #user_data = "YOUR_USER_DATA_HERE"
- # darkfid JSON-RPC endpoint
- endpoint = "tcp://127.0.0.1:8440"
|