DNET Public OVC

Public OVC is a service provided by DNC token miners. In addition to hash computing, another prerequisite for miners to have mining power is to provide OVC services.

Miners can directly execute commands to mine through dnetcoin nodes, or mine in the mining pool through mining machines. No matter which way to mine, the dependent dnetcoin node must add OVC operating parameters before starting, the dnetcoin node that mining relies on must have a public IP address, and the firewall needs to open the OVC port.

Only supports mining in Linux environment.

The following is specific operations:

  • Use CLI:
# OVC_PUB_IP : OVC Public IP address
# OVC_PORT   : OVC running port (default: 1213)

dnetcoind -testdnet [-datadir=YOUR_CUSTOM_DIR -ovc=OVC_PUB_IP:OVC_PORT -daemon
  • Use QT:
# Linux

dnetcoin-qt -testdnet [-datadir=YOUR_CUSTOM_DIR] -ovc=OVC_PUB_IP:OVC_PORT

Or add parameters to dnetcoin.conf, using the CLI and QT to start without adding the "-ovc" parameter:

# OVC_PUB_IP : OVC Public IP address
# OVC_PORT   : OVC running port (default: 1213)

ovc=OVC_PUB_IP:OVC_PORT

Start dnetcoin, the system will automatically build ovc, and establish a connection with the ovc seed node and automatically cluster. It may take a few minutes for this connection to be established. After the ovc cluster is completed, you can execute the getpeerinfo command in dnetcoin (CLI or QT) to view the connected ovc seed node information.

Content snippet:

"ovc_enable": true,
"ovc_publicip": [ovc_publicip],
"ovc_port": [ovc_port],
"ovc_address": [ovc_address]

Edit this page on GitHub