Post
Topic
Board Mining (Altcoins)
Re: [ANN] lolMiner 0.41 (Update: July 30th, Added Heptacoin & Windows Stability)
by
CygnusMinor
on 10/08/2018, 19:33:36 UTC

Post an example of a bat file or configuration file.
It does not start.

Here's an example of what I use on Ubuntu. Is this what you're looking for?

$ cat user_config.json
{
        "DEFAULTS" : {
                "DEVICES" : "AUTO",
                "APIPORT" : 0
        },

   "HEPTA_NIBIRU" :
   {
      "COIN" : "HEPTA",
      "POOLS" : [
         {"POOL" : "hepta.nibirupool.com",
          "PORT" : "8138",
          "USER" : ".",
          "PASS" : "any"}
      ]
   }
}

$ cat run_hepta_nibiru.sh
#!/bin/bash

#################################
## Begin of user-editable part ##
#################################

PROFILE=HEPTA_NIBIRU

export GPU_FORCE_64BIT_PTR=1
export GPU_MAX_HEAP_SIZE=100
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
export GPU_SINGLE_ALLOC_PERCENT=100
#################################
##  End of user-editable part  ##
#################################

cd "$(dirname "$0")"
while true
do
  ./lolMiner -profile=$PROFILE $@
  if [ $? -eq 134 ]
  then
    break
  fi
done