1 Testing Instruction
Network | Conflux Oceanus |
Version | v0.6.3 |
Graphics Card Type | NVIDIA GPU |
Graphics Memory | 8GB or more |
Install NVIDIA driver | Download |
1.1 Testing Instruction for Windows
Note:
- It is recommended to turn off antivirus softwares.
- Win 10, version 1903 and above.
1.2 Run Files
- cfxmine: mining program: Download
- conflux_win10_x64_v0.6.3: fullnode program: Download
(Differences from previous versions: the default.toml released with the mainnet will be renamed as oceanus.toml; the default.toml released with the testnet will be renamed as testnet.toml.)
1.3 Prepare to Run Conflux
- Create a directory: conflux
- Extract the download package to the directory respectively
The directory structure is:
conflux
└── run
└── conflux.exe
└── oceanus.toml
└── cfxmine.exe
1.4 Configuration Instructions
Open the run/oceanus.toml file with a text editor and configure mining related parameters:
mining_author="Personal wallet address (without 0x prefix)"
1.5 Run the GPU Mining Program
The Conflux GPU mining program cfxmine needs to run with the Conflux node program. Follow the steps below to start:
- Open the directory of the run executable file in cmd and start the fullnode:
cd conflux\run
conflux --config oceanus.toml --full 2>stderr.txt
Then you can start mining.
- Open the directory of the cfxmine executable file in cmd and start the Conflux GPU mining program:
cd conflux
cfxmine --gpu
Note: The GPU command line is executed after the fullnode synchronization is completed.
2 Testing Instructions for Linux
2.1 Run Files
The directory structure is:
conflux
└── run
└── conflux
└── oceanus.toml
└── cfxmine
2.2 Configuration Instructions
Open the run/oceanus.toml file with a text editor and configure mining related parameters:
mining_author="Personal wallet address (without 0x prefix)"
2.3 Run the GPU Mining Program
The Conflux GPU mining program cfxmine needs to run with the Conflux node program. Follow the steps below to start:
In bash (or any POSIX compliant Shell), start the fullnode:
cd conflux/run
./conflux --config oceanus.toml --full 2>stderr.txt
Then you can start mining.
Open the directory of the cfxmine executable file in bash (or any POSIX compliant Shell), and start the Conflux GPU miningprogram:
cd conflux
./cfxmine --gpu
Note: The GPU command line is executed after the fullnode synchronization is completed.
3 Tips:
If the Conflux node program and cfxmine are not on the same computer, you can specify the IP address and the port (the default is 32525) of the remote Conflux node program when starting cfxmine.
./cfxmine --gpu --addr A.B.C.D
or
./cfxmine --gpu --addr A.B.C.D --port xxxx
If you want to designate remote node, you need to change the configuration of the node into:
stratum_listen_address=“0.0.0.0”, and delete #
Note: The GPU command line is executed after the fullnode synchronization is completed.