Pages:
Author

Topic: SPOT Mining- - page 2. (Read 1664 times)

newbie
Activity: 17
Merit: 0
February 13, 2018, 11:17:24 PM
#37
Sounds good!  Will post an early release one here..  I learned a lesson posting the pool before it was ready..  demand was outpacing supply for a pool.  Seems like everyone wanted to go swimming. lol.
newbie
Activity: 17
Merit: 0
February 12, 2018, 01:40:55 PM
#36
We have an offline wallet generator in testing. If there is interest in seeing it early let me know. 
full member
Activity: 1246
Merit: 138
Hodl DeepOnion
February 11, 2018, 01:35:09 PM
#35
Are there any bounties?
newbie
Activity: 3
Merit: 0
February 08, 2018, 02:02:06 PM
#34
Hello

pool.crypto-me.com

no payout since 2:30 pm

WEDL
newbie
Activity: 17
Merit: 0
February 06, 2018, 10:22:04 AM
#33
No block explorer yet.. 

newbie
Activity: 17
Merit: 0
February 04, 2018, 01:02:18 AM
#32
Payments are working now.
newbie
Activity: 17
Merit: 0
February 03, 2018, 11:38:35 PM
#31
It appears  Wink to be working now. knock on wood.. holding rabbit foot..   crossing eyes...  i mean fingers..  


 So I want to share what was stopping it from working if someone else decides to set up a pool.

This will fix problems with connecting to the pool
ports open.. but receiving stratum errors

and miners not getting paid.
Behavior is repeated logs of "No workers' balances reached the minimum payment threshold" even though should have.



in the cryptonote mining pool default distro you need to fix the package.json file


in package.json file

replace this section
        
       "dependencies": {
        "bignum": "*",
        "async": "*",
        "redis": "*",
        "cli-color": "*",
        "dateformat": "*",
        "base58-native": "*",
        "multi-hashing": "git://github.com/fancoder/node-multi-hashing.git",
        "cryptonote-util": "git://github.com/fancoder/node-cryptonote-util.git"
    }



With this line

      

    "dependencies": {
    "bignum": "0.12.5",
        "async": "1.5.2",
        "redis": "0.12.1",
   "cli-color": "1.1.0",
        "dateformat": "1.0.12",
       "base58-native": "0.1.4",
        "multi-hashing": "git://github.com/fancoder/node-multi-hashing.git",
        "cryptonote-util": "git://github.com/forknote/node-cryptonote-util.git"
    }



do this after you clone from git (so you have the files to edit)
and before you run npm update (so it downloads the right repository)

If you have already ran npm update..  delete node_modules folder and run again
newbie
Activity: 2
Merit: 0
February 03, 2018, 07:56:28 PM
#30
pool1.crypto-me.com not responding on any ports or ping.

pool.crypto-me.com responding on some ports but none used for mining.
newbie
Activity: 14
Merit: 0
February 03, 2018, 06:54:01 PM
#29
[2018-02-04 07:50:11] : Pool pool1.crypto-me.com:13333 connected. Logging in...
[2018-02-04 07:50:11] : SOCKET ERROR - [pool1.crypto-me.com:13333] RECEIVE error: socket closed

i think port is closed
newbie
Activity: 17
Merit: 0
February 03, 2018, 04:37:29 PM
#28
config.json

Basically update the ports to where your server is listening, update the wallet address, and the admin  password.

 It is based on your configuration of the node that is running the SPOT daemon, node-js, redis, and simplewallet started in RPC mode  (  ./simplewallet --config-file /path/to/spotmecoin/SPOT.conf --wallet-rpc-bind-port 8082 --password '#yeahright#' --wallet-file /path/to/your/wallet.file   ).  (can also put those command line switches in the config file)




Code:

{
    "coin": "SPOT",
    "symbol": "SPOT",
    "coinUnits": 100000000000,
    "coinDifficultyTarget": 120,

    "logging": {
        "files": {
            "level": "info",
            "directory": "logs",
            "flushInterval": 5
        },
        "console": {
            "level": "info",
            "colors": true
        }
    },

    "poolServer": {
        "enabled": true,
        "clusterForks": "auto",
        "poolAddress": "PUT WALLET PUBLIC ADDRESS HERE - Basically Where you want payment to go",
        "blockRefreshInterval": 1000,
        "minerTimeout": 900,
        "ports": [
            {
                "port": 13333,
                "difficulty": 100,
                "desc": "Low end hardware"
            },
            {
                "port": 13336,
                "difficulty": 2000,
                "desc": "Mid range hardware"
            },
            {
                "port": 13339,
                "difficulty": 10000,
                "desc": "High end hardware"
            },
            {
                "port": 13329,
                "difficulty": 10000,
                "desc": "Hidden port",
                "hidden": true
            }
        ],
        "varDiff": {
            "minDiff": 100,
            "maxDiff": 200000,
            "targetTime": 100,
            "retargetTime": 30,
            "variancePercent": 30,
            "maxJump": 100
        },
        "fixedDiff": {
            "enabled": true,
            "addressSeparator": "."
        },
        "shareTrust": {
            "enabled": true,
            "min": 10,
            "stepDown": 3,
            "threshold": 10,
            "penalty": 30
        },
        "banning": {
            "enabled": true,
            "time": 600,
            "invalidPercent": 25,
            "checkThreshold": 30
        }
    },

    "payments": {
        "enabled": true,
        "interval": 600,
        "maxAddresses": 50,
        "mixin": 3,
        "transferFee": 50000000,
        "minPayment": 100000000000,
        "maxTransactionAmount": 45000000000000,
        "denomination": 100000000000
    },

    "blockUnlocker": {
        "enabled": true,
        "interval": 30,
        "depth": 10,
        "poolFee": 2,
        "devDonation": 0.0,
        "coreDevDonation": 0.0,
        "extraFeaturesDevDonation":0.0
    },

    "api": {
        "enabled": true,
        "hashrateWindow": 600,
        "updateInterval": 5,
        "port": 8117,
        "blocks": 30,
        "payments": 30,
        "password": "UPDATE-ME"
    },

    "daemon": {
        "host": "127.0.0.1",
        "port": 19498
    },

    "wallet": {
        "host": "127.0.0.1",
        "port": 8082
    },

    "redis": {
        "host": "127.0.0.1",
        "port": 6699
    },

    "monitoring": {
        "daemon": {
            "checkInterval": 60,
            "rpcMethod": "getblockcount"
        },
        "wallet": {
            "checkInterval": 60,
            "rpcMethod": "getbalance"
        }
    },

    "charts": {
        "pool": {
            "hashrate": {
                "enabled": true,
                "updateInterval": 60,
                "stepInterval": 1800,
                "maximumPeriod": 86400
            },
            "workers": {
                "enabled": true,
                "updateInterval": 60,
                "stepInterval": 1800,
                "maximumPeriod": 86400
            },
            "difficulty": {
                "enabled": true,
                "updateInterval": 1800,
                "stepInterval": 10800,
                "maximumPeriod": 604800
            },
            "price": {
                "enabled": true,
                "updateInterval": 1800,
                "stepInterval": 10800,
                "maximumPeriod": 604800
            },
            "profit": {
                "enabled": true,
                "updateInterval": 1800,
                "stepInterval": 10800,
                "maximumPeriod": 604800
            }
        },
        "user": {
            "hashrate": {
                "enabled": true,
                "updateInterval": 180,
                "stepInterval": 1800,
                "maximumPeriod": 86400
            },
            "payments": {
                "enabled": true
            }
        }
    }
}
newbie
Activity: 17
Merit: 0
February 03, 2018, 04:07:22 PM
#27
So.. its fixed.   wasn't a port problem per se...   more of a wrong url for the node supporting the mining in the website config.

pool1.crypto-me.com isn't responding on port 13330 ().
pool1.crypto-me.com isn't responding on port 13331 ().
pool1.crypto-me.com isn't responding on port 13332 ().
pool1.crypto-me.com is responding on port 13333 ().

pool1.crypto-me.com isn't responding on port 13334 ().
pool1.crypto-me.com isn't responding on port 13335 ().
pool1.crypto-me.com is responding on port 13336 ().

pool1.crypto-me.com isn't responding on port 13337 ().
pool1.crypto-me.com isn't responding on port 13338 ().
pool1.crypto-me.com is responding on port 13339 ().

pool1.crypto-me.com isn't responding on port 13340 ()


Correct address for the configuration has been updated from pool.crypto-me.com  to pool1.crypto-me.com

newbie
Activity: 17
Merit: 0
February 03, 2018, 03:43:39 PM
#26
Will look into the ports
newbie
Activity: 2
Merit: 0
February 03, 2018, 02:39:09 PM
#25
doesn't look like i can connect to the pool on any of the ports supplied.
anyone else confirm?


Portscan shows none of the ports to use for mining are open.

Portscan done on other pools show the ports open.
newbie
Activity: 3
Merit: 0
February 03, 2018, 01:08:26 PM
#24
doesn't look like i can connect to the pool on any of the ports supplied.
anyone else confirm?
newbie
Activity: 3
Merit: 0
February 03, 2018, 12:36:11 PM
#23
Great comments so far guys.

No issues with the servers.

And it is cryptonote based so  tools / mining strategies based on crypto note will work well.


We are working on a pool as well.  We havent verified the tools yet, but feel free to connect to it and try it out.  Good way to see network hashing rates.

http://pool.crypto-me.com/

If others are interested in setting up a pool, we can share a sanitized version of our config.json if there is interest



ill take that config.json
newbie
Activity: 14
Merit: 0
February 03, 2018, 10:32:49 AM
#22
Hi Ben,

[2018-02-03 23:28:37] : SOCKET ERROR - [pool.crypto-me.com:13336] CONNECT error: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
newbie
Activity: 17
Merit: 0
February 03, 2018, 10:19:18 AM
#21
Great comments so far guys.

No issues with the servers.

And it is cryptonote based so  tools / mining strategies based on crypto note will work well.


We are working on a pool as well.  We havent verified the tools yet, but feel free to connect to it and try it out.  Good way to see network hashing rates.

http://pool.crypto-me.com/

If others are interested in setting up a pool, we can share a sanitized version of our config.json if there is interest

newbie
Activity: 14
Merit: 0
February 03, 2018, 03:25:56 AM
#20
 ERROR   [207.148.25.69:19497 OUT] Failed to invoke COMMAND_HANDSHAKE, closing connection.

Any issue with the server
jr. member
Activity: 202
Merit: 2
February 02, 2018, 09:57:28 AM
#19
GPU Mining
Existing third party GPU mining clients can be used.
Such as CPUMiner-Multi, ccminer-cryptonight, Claymore CryptyNote GPU (which supports GPU mining) and others.
We are working on putting out GPU mining instructions, for those that need them.

are these guides available yet?  
thanks!

If it is a cryptonote, you can use any Monero guide and software.

I may be wrong cuz im not mining it right now. I just got here...

Did i read it right?
is there a 33% pre mined?

Hey, i do need some offline addres generator. I do have  security problems....
And is there a node to be used?
Or  pools?
newbie
Activity: 14
Merit: 0
February 02, 2018, 09:36:09 AM
#18
as of now not yet available. only cpu
Pages:
Jump to: