zorday
Newbie
Offline
Activity: 19
Merit: 0
|
|
February 02, 2018, 10:48:48 AM |
|
I don't get it, got the hsr miner and a bat file but the miner won't launch. Does somebody know what I'm doing wrong?
hsrminer_neoscrypt.exe -o stratum+tcp://eu1.altminer.net:10004 -u xxxx -p c=CRC pause
try adding -a neoscrypt before -o Mind you. hsrminer is probably a scam miner that just reports higher hash rates without actually doing the work. Not certain though. I always had AMD and since a few weeks Nvidia, so I don't know what miners are best. Which miner do you recommend? Assuming that the above is true (that hsrminer is boogus) KlausT is probably the best option: https://github.com/KlausT/ccminer/releasesEDIT: My answer above was probably wrong.. hsrminer has different parameters than ccminer so you probably had another issue. But you can at least try KlausT as an alternative.
|
|
|
|
pater92 (OP)
Member
Offline
Activity: 172
Merit: 10
|
|
February 02, 2018, 02:36:23 PM |
|
Update Hello, guys, I am disturbing you a little bit today to give you some info about what's going on... Since yesterday it's available the first draft of the whitepaper of Crowdcoin project on our discord Channel, feel free to add your comments and suggestions. Also now we have #survey channel in order to take decision on the development we started with the choice of the slogan... few hours and it will become final. Today we are going to announce a partnership the we are pretty happy with related to cloud mining. Tomorow 5 pm London time... save the date. We are going to have the auction of 2 mn for 3 BTC each, ask to be added to the dev n.b. only those that are registered can participate there will be 3-hour distance between the auction of the first and the auction of the second mn For any info.... here we are
|
|
|
|
ahmedshawki
Newbie
Offline
Activity: 47
Merit: 0
|
|
February 02, 2018, 06:50:29 PM |
|
is it still worth to mine this coin CRC
|
|
|
|
coincik
Newbie
Offline
Activity: 16
Merit: 0
|
|
February 02, 2018, 09:22:45 PM |
|
Hi
setup masternode. but status watchdog expired
there was no error during installation. only warned that it is already working in the input second ./crowdcoind -deamon
what can I do
wallet unlock
|
|
|
|
ksgm
Newbie
Offline
Activity: 2
Merit: 0
|
|
February 03, 2018, 01:27:35 PM |
|
Hi,
I need some help to install mn by COLD_WALLET_ON_WINDOWS_WITH_LINUX_VPS.pdf. I typed "./venv/bin/py.test ./test" but it returned an error. I have no idea to solve it...
root@xxxx:~/.crowdcoincore/sentinelLinux$ ./venv/bin/py.test ./test ======================================= test session starts ======================================== platform linux2 -- Python 2.7.12, pytest-3.0.1, py-1.4.31, pluggy-0.3.1 rootdir: /root/.crowdcoincore/sentinelLinux, inifile: collected 23 items
test/integration/test_jsonrpc.py F test/unit/test_crowdcoin_config.py . test/unit/test_crowdcoind_data_shims.py .. test/unit/test_crowdcoiny_things.py ...... test/unit/test_misc.py . test/unit/test_models.py .. test/unit/test_submit_command.py . test/unit/models/test_proposals.py .... test/unit/models/test_superblocks.py .....
============================================= FAILURES ============================================= _________________________________________ test_crowdcoind __________________________________________
def test_crowdcoind(): config_text = CrowdcoinConfig.slurp_config_file(config.crowdcoin_conf) network = 'mainnet' is_testnet = False genesis_hash = u'000007db550074c6535ce41c2a6043d0afbc86f17f1762b06e2cd65d100f7b5f' for line in config_text.split("\n"): if line.startswith('testnet=1'): network = 'testnet' is_testnet = True genesis_hash = u'00000a8d0db898c786060f839e63529700bd00e4708b028206a8a60f391566d8'
creds = CrowdcoinConfig.get_rpc_creds(config_text, network) crowdcoind = CrowdcoinDaemon(**creds) assert crowdcoind.rpc_command is not None
assert hasattr(crowdcoind, 'rpc_connection')
# Crowdcoin testnet block 0 hash == 00000bafbc94add76cb75e2ec92894837288a481e5c005f6563d91623bf8bc2c # test commands without arguments > info = crowdcoind.rpc_command('getinfo')
test/integration/test_jsonrpc.py:34: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ lib/crowdcoind.py:42: in rpc_command return self.rpc_connection.__getattr__(params[0])(*params[1:]) venv/local/lib/python2.7/site-packages/bitcoinrpc/authproxy.py:136: in __call__ 'Content-type': 'application/json'}) /usr/lib/python2.7/httplib.py:1057: in request self._send_request(method, url, body, headers) /usr/lib/python2.7/httplib.py:1097: in _send_request self.endheaders(body) /usr/lib/python2.7/httplib.py:1053: in endheaders self._send_output(message_body) /usr/lib/python2.7/httplib.py:897: in _send_output self.send(msg) /usr/lib/python2.7/httplib.py:859: in send self.connect() /usr/lib/python2.7/httplib.py:836: in connect self.timeout, self.source_address) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
address = ('127.0.0.1', 9998), timeout = 30, source_address = None
def create_connection(address, timeout=_GLOBAL_DEFAULT_TIMEOUT, source_address=None): """Connect to *address* and return the socket object.
Convenience function. Connect to *address* (a 2-tuple ``(host, port)``) and return the socket object. Passing the optional *timeout* parameter will set the timeout on the socket instance before attempting to connect. If no *timeout* is supplied, the global default timeout setting returned by :func:`getdefaulttimeout` is used. If *source_address* is set it must be a tuple of (host, port) for the socket to bind as a source address before making the connection. A host of '' or port 0 tells the OS to use the default. """
host, port = address err = None for res in getaddrinfo(host, port, 0, SOCK_STREAM): af, socktype, proto, canonname, sa = res sock = None try: sock = socket(af, socktype, proto) if timeout is not _GLOBAL_DEFAULT_TIMEOUT: sock.settimeout(timeout) if source_address: sock.bind(source_address) sock.connect(sa) return sock
except error as _: err = _ if sock is not None: sock.close()
if err is not None: > raise err E error: [Errno 111] Connection refused
/usr/lib/python2.7/socket.py:575: error =============================== 1 failed, 22 passed in 1.48 seconds ================================
|
|
|
|
bspus
Legendary
Offline
Activity: 2165
Merit: 1002
|
|
February 03, 2018, 01:41:12 PM |
|
Hi
setup masternode. but status watchdog expired
there was no error during installation. only warned that it is already working in the input second ./crowdcoind -deamon
what can I do
wallet unlock
You need to set up sentinel, a python script and make a cron job to run every minute Look at the guides in the official site.
|
|
|
|
coincik
Newbie
Offline
Activity: 16
Merit: 0
|
|
February 03, 2018, 02:44:26 PM |
|
I install. but I got the same error as the previous message Hi
setup masternode. but status watchdog expired
there was no error during installation. only warned that it is already working in the input second ./crowdcoind -deamon
what can I do
wallet unlock
You need to set up sentinel, a python script and make a cron job to run every minute Look at the guides in the official site.
|
|
|
|
CryptoRobert
|
|
February 04, 2018, 12:31:07 AM |
|
On masternodes.pro site Crowdcoin is listed as the coin with the highest ROI on the market - is it true or better said where is the trick?
|
|
|
|
pshemek
|
|
February 04, 2018, 10:46:47 AM |
|
everyone you should be aware that yobit has listed a coin named crycoin with the same ticker as crowdcoin.
|
|
|
|
kreptonite
Newbie
Offline
Activity: 2
Merit: 0
|
|
February 05, 2018, 01:24:37 AM |
|
Hi
is 2900 KH/s to 3000 KH/s for 3 GTX 1080 any good? not sure if its the common hash rate for the 1080s to mine Crowdcoin
thanks
|
|
|
|
bercy
Newbie
Offline
Activity: 42
Merit: 0
|
|
February 05, 2018, 10:38:21 PM |
|
Hi, Quick questions on masternodes : 1- Is this the way to setup a Crowdcoin masternode : https://crowdcoin.site/guides/COLD_WALLET_ON_WINDOWS_WITH_LINUX_VPS.pdf ? 2- I have 1000 CRC in a Crowdcoin Core wallet. Once I transfer these 1000 CRC to the address generated by the "getnewaddress MN1" command, will I be able to control those coins from the same wallet, or will I need to use another wallet executable, for example from the Linux server ? Thanks.
|
|
|
|
new2mn
Newbie
Offline
Activity: 8
Merit: 0
|
|
February 06, 2018, 06:32:20 AM |
|
Facing issues setting up Sentinel.. anyone has any idea how to fix this or get around it.. also how do i know MN is up and running fine ?
================================================ test session starts ================================================ platform linux2 -- Python 2.7.12, pytest-3.0.1, py-1.4.31, pluggy-0.3.1 rootdir: /root/.crowdcoincore/sentinelLinux, inifile: collected 23 items
test/integration/test_jsonrpc.py F test/unit/test_crowdcoin_config.py . test/unit/test_crowdcoind_data_shims.py .. test/unit/test_crowdcoiny_things.py ...... test/unit/test_misc.py . test/unit/test_models.py .. test/unit/test_submit_command.py . test/unit/models/test_proposals.py .... test/unit/models/test_superblocks.py .....
===================================================== FAILURES ====================================================== __________________________________________________ test_crowdcoind __________________________________________________
def test_crowdcoind(): config_text = CrowdcoinConfig.slurp_config_file(config.crowdcoin_conf) network = 'mainnet' is_testnet = False genesis_hash = u'000007db550074c6535ce41c2a6043d0afbc86f17f1762b06e2cd65d100f7b5f' for line in config_text.split("\n"): if line.startswith('testnet=1'): network = 'testnet' is_testnet = True genesis_hash = u'00000a8d0db898c786060f839e63529700bd00e4708b028206a8a60f391566d8'
creds = CrowdcoinConfig.get_rpc_creds(config_text, network) crowdcoind = CrowdcoinDaemon(**creds) assert crowdcoind.rpc_command is not None
assert hasattr(crowdcoind, 'rpc_connection')
# Crowdcoin testnet block 0 hash == 00000bafbc94add76cb75e2ec92894837288a481e5c005f6563d91623bf8bc2c # test commands without arguments > info = crowdcoind.rpc_command('getinfo')
test/integration/test_jsonrpc.py:34: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ lib/crowdcoind.py:42: in rpc_command return self.rpc_connection.__getattr__(params[0])(*params[1:]) venv/local/lib/python2.7/site-packages/bitcoinrpc/authproxy.py:136: in __call__ 'Content-type': 'application/json'}) /usr/lib/python2.7/httplib.py:1057: in request self._send_request(method, url, body, headers) /usr/lib/python2.7/httplib.py:1097: in _send_request self.endheaders(body) /usr/lib/python2.7/httplib.py:1053: in endheaders self._send_output(message_body) /usr/lib/python2.7/httplib.py:897: in _send_output self.send(msg) /usr/lib/python2.7/httplib.py:859: in send self.connect() /usr/lib/python2.7/httplib.py:836: in connect self.timeout, self.source_address) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
address = ('127.0.0.1', 9998), timeout = 30, source_address = None
def create_connection(address, timeout=_GLOBAL_DEFAULT_TIMEOUT, source_address=None): """Connect to *address* and return the socket object.
Convenience function. Connect to *address* (a 2-tuple ``(host, port)``) and return the socket object. Passing the optional *timeout* parameter will set the timeout on the socket instance before attempting to connect. If no *timeout* is supplied, the global default timeout setting returned by :func:`getdefaulttimeout` is used. If *source_address* is set it must be a tuple of (host, port) for the socket to bind as a source address before making the connection. A host of '' or port 0 tells the OS to use the default. """
host, port = address err = None for res in getaddrinfo(host, port, 0, SOCK_STREAM): af, socktype, proto, canonname, sa = res sock = None try: sock = socket(af, socktype, proto) if timeout is not _GLOBAL_DEFAULT_TIMEOUT: sock.settimeout(timeout) if source_address: sock.bind(source_address) sock.connect(sa) return sock
except error as _: err = _ if sock is not None: sock.close()
if err is not None: > raise err E error: [Errno 111] Connection refused
/usr/lib/python2.7/socket.py:575: error ======================================== 1 failed, 22 passed in 0.57 seconds ========================================
|
|
|
|
asphixia
Newbie
Offline
Activity: 12
Merit: 0
|
|
February 06, 2018, 02:44:28 PM |
|
How can I see if my MN is ok? MN is online for more than 14 hours and no reward yet ... should I wait more or start panicking?
|
|
|
|
bspus
Legendary
Offline
Activity: 2165
Merit: 1002
|
|
February 06, 2018, 08:03:49 PM |
|
How can I see if my MN is ok? MN is online for more than 14 hours and no reward yet ... should I wait more or start panicking?
Start panicking. That's always helpful You should be able to see in your controller wallet in the masternodes tab. If everything is set up correctly, it should say it is enabled and when it was last seen. I'm assuming you have the classic setup with a remote linux VM and a local controller qt wallet to start it As for the amount of time, you may only know the average. For crowdcoin, these days its almost 24h, so no worries...yet You can see for yourself at https://masternodes.online/currencies/CRC/
|
|
|
|
artdrx
Newbie
Offline
Activity: 3
Merit: 0
|
|
February 06, 2018, 09:13:57 PM |
|
what's the best place to mine CrowdCoin (CRC) right now? any suggestions??
I've tried bsod, cryptopros, altminer and unimining. Getting some coins but very low frequency compared to other coins
|
|
|
|
coolbits
Copper Member
Member
Offline
Activity: 125
Merit: 15
|
|
February 06, 2018, 10:03:27 PM |
|
what's the best place to mine CrowdCoin (CRC) right now? any suggestions??
I've tried bsod, cryptopros, altminer and unimining. Getting some coins but very low frequency compared to other coins
You're pretty much comparing apples to oranges here. It's not about how many coins you get, it's about their value (now or in the future, if you're betting on it).
|
|
|
|
Sushio
Newbie
Offline
Activity: 7
Merit: 0
|
|
February 07, 2018, 06:19:10 PM |
|
CrowdCoin is on Poolr No fees until March! US hosted server! -a skein -o stratum+tcp://poolr.io:4933 -u YOURWALLETADDRESS.rigname -p x -R 5 Team Poolr welcomes you!
|
|
|
|
new2mn
Newbie
Offline
Activity: 8
Merit: 0
|
|
February 07, 2018, 07:12:26 PM |
|
add the rpcport parameter in your crowdcoin.conf file rpcport=9998 hope this helps.. worked for me.. =============================== Hi,
I need some help to install mn by COLD_WALLET_ON_WINDOWS_WITH_LINUX_VPS.pdf. I typed "./venv/bin/py.test ./test" but it returned an error. I have no idea to solve it...
root@xxxx:~/.crowdcoincore/sentinelLinux$ ./venv/bin/py.test ./test ======================================= test session starts ======================================== platform linux2 -- Python 2.7.12, pytest-3.0.1, py-1.4.31, pluggy-0.3.1 rootdir: /root/.crowdcoincore/sentinelLinux, inifile: collected 23 items
test/integration/test_jsonrpc.py F test/unit/test_crowdcoin_config.py . test/unit/test_crowdcoind_data_shims.py .. test/unit/test_crowdcoiny_things.py ...... test/unit/test_misc.py . test/unit/test_models.py .. test/unit/test_submit_command.py . test/unit/models/test_proposals.py .... test/unit/models/test_superblocks.py .....
============================================= FAILURES ============================================= _________________________________________ test_crowdcoind __________________________________________
def test_crowdcoind(): config_text = CrowdcoinConfig.slurp_config_file(config.crowdcoin_conf) network = 'mainnet' is_testnet = False genesis_hash = u'000007db550074c6535ce41c2a6043d0afbc86f17f1762b06e2cd65d100f7b5f' for line in config_text.split("\n"): if line.startswith('testnet=1'): network = 'testnet' is_testnet = True genesis_hash = u'00000a8d0db898c786060f839e63529700bd00e4708b028206a8a60f391566d8'
creds = CrowdcoinConfig.get_rpc_creds(config_text, network) crowdcoind = CrowdcoinDaemon(**creds) assert crowdcoind.rpc_command is not None
assert hasattr(crowdcoind, 'rpc_connection')
# Crowdcoin testnet block 0 hash == 00000bafbc94add76cb75e2ec92894837288a481e5c005f6563d91623bf8bc2c # test commands without arguments > info = crowdcoind.rpc_command('getinfo')
test/integration/test_jsonrpc.py:34: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ lib/crowdcoind.py:42: in rpc_command return self.rpc_connection.__getattr__(params[0])(*params[1:]) venv/local/lib/python2.7/site-packages/bitcoinrpc/authproxy.py:136: in __call__ 'Content-type': 'application/json'}) /usr/lib/python2.7/httplib.py:1057: in request self._send_request(method, url, body, headers) /usr/lib/python2.7/httplib.py:1097: in _send_request self.endheaders(body) /usr/lib/python2.7/httplib.py:1053: in endheaders self._send_output(message_body) /usr/lib/python2.7/httplib.py:897: in _send_output self.send(msg) /usr/lib/python2.7/httplib.py:859: in send self.connect() /usr/lib/python2.7/httplib.py:836: in connect self.timeout, self.source_address) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
address = ('127.0.0.1', 9998), timeout = 30, source_address = None
def create_connection(address, timeout=_GLOBAL_DEFAULT_TIMEOUT, source_address=None): """Connect to *address* and return the socket object.
Convenience function. Connect to *address* (a 2-tuple ``(host, port)``) and return the socket object. Passing the optional *timeout* parameter will set the timeout on the socket instance before attempting to connect. If no *timeout* is supplied, the global default timeout setting returned by :func:`getdefaulttimeout` is used. If *source_address* is set it must be a tuple of (host, port) for the socket to bind as a source address before making the connection. A host of '' or port 0 tells the OS to use the default. """
host, port = address err = None for res in getaddrinfo(host, port, 0, SOCK_STREAM): af, socktype, proto, canonname, sa = res sock = None try: sock = socket(af, socktype, proto) if timeout is not _GLOBAL_DEFAULT_TIMEOUT: sock.settimeout(timeout) if source_address: sock.bind(source_address) sock.connect(sa) return sock
except error as _: err = _ if sock is not None: sock.close()
if err is not None: > raise err E error: [Errno 111] Connection refused
/usr/lib/python2.7/socket.py:575: error =============================== 1 failed, 22 passed in 1.48 seconds ================================
|
|
|
|
kras1v777
Member
Offline
Activity: 164
Merit: 10
|
|
February 08, 2018, 09:45:32 AM |
|
is there any good news? and how there is Envion ?
|
|
|
|
|
|