What is/are the commands to run to initiate mining?
Not sure if it works, but worth to try:
On windows: Open your wallet, and make sure your wallet is connected with a node.
Close your wallet and create the file catecoin.conf in the folder %APPDATA%\catecoin.
Paste the following text into catecoin.conf and save the file. N.B: EDIT
rpc_catecoin +
rpc_password for any rpcuser and rpcpassword you'd like
rpcuser=rpc_catecoin
rpcpassword=rpc_password
rpcallowip=127.0.0.1
server=1
listen=1
addnode=149.248.10.178
addnode=189.4.67.32
addnode=45.77.111.97
addnode=208.167.239.208
addnode=45.63.9.40 Create a .bat file named mine.bat in the same folder where you extracted catecoin-cli.exe and paste the following text into mine.bat:
@echo off
set path_cli=%cd%
cd %path_cli%
echo Press [CTRL+C] to stop mining.
:begin
catecoin-cli.exe generate 1
goto begin Save the file
Execute mine.bat to start mining
For linux :
Would be the same except change the datadir for the catecoin.conf and of course remove the suffix " .exe " for catecoin-cli