diff --git a/miners/miners.go b/miners/miners.go index 7ac8643e..18d707d9 100644 --- a/miners/miners.go +++ b/miners/miners.go @@ -58,7 +58,7 @@ func NewBinaryRunner(m MinerBinary) (*BinaryRunner, error) { br.MinerImpl = NewCCMinerImpl(br) } else if strings.HasPrefix(m.MainExecutableName, "teamred") { br.MinerImpl = NewTeamRedMinerImpl(br) - } else if strings.HasPrefix(m.MainExecutableName, "Cryptodredge") { + } else if strings.HasPrefix(m.MainExecutableName, "CryptoDredge") { br.MinerImpl = NewCryptoDredgeMinerImpl(br) } else { return nil, fmt.Errorf("Could not determine implementation for miner binary")