Luxor Documentation Hub Logo
Firmware/API Docs/CGminer commands

disablepool

Disables a pool

disablepool

Description

Disables a specific pool. This has no effect if the pool is already disabled. If the disabled pool is the currently active within the group, the connection will be closed and the next pool will be used.

Note: If autosave is disabled, the changes will be lost after a reboot.

Command

$ echo '{"command": "disablepool", "parameter": "1"}' | nc $MINER_IP 4028 | jq

Examples

$ echo '{"command": "disablepool", "parameter": "1"}' | nc $MINER_IP 4028 | jq
{
  "STATUS": [
    {
      "Code": 48,
      "Description": "LUXminer 2024.2.19.131822-ef17c0c4",
      "Msg": "Disabling pool 1: 'btc.global.luxor.tech:700'",
      "STATUS": "S",
      "When": 1672770090
    }
  ],
  "id": 1
}

Parameters

ParameterNotes
pool_idNumeric ID of the pool. It is the same value as returned on pools command.

On this page