Pages:
Author

Topic: [ANN][BLC] Blakecoin Blake-256 for GPU/FPGA With Merged Mined Pools Stable Net - page 8. (Read 409453 times)

sr. member
Activity: 409
Merit: 250
It works! Got a BLC and a PHO block solved Smiley

Still curious, that it works now - didnt change anything else than the wait line. As i want to install the other four Blake-Coins too, i will see if it will work again after restarting the system / processes.

Thanks alot for your patience and your help!

Congratulations on getting things working!  Grin
legendary
Activity: 1509
Merit: 1030
Solutions Architect
It works! Got a BLC and a PHO block solved Smiley

Still curious, that it works now - didnt change anything else than the wait line. As i want to install the other four Blake-Coins too, i will see if it will work again after restarting the system / processes.

Thanks alot for your patience and your help!

no problem glad I could help any other issues just let me know always happy to help those that try it for themselves  Grin
jr. member
Activity: 67
Merit: 3
It works! Got a BLC and a PHO block solved Smiley

Still curious, that it works now - didnt change anything else than the wait line. As i want to install the other four Blake-Coins too, i will see if it will work again after restarting the system / processes.

Thanks alot for your patience and your help!
legendary
Activity: 1509
Merit: 1030
Solutions Architect
So now. Maybe i should have said i start eloipool and mmp in one runit.sh

Code:
#!/bin/sh

PYTHONPATH=/home/osboxes/Desktop/eloipool_Blakecoin/python-bitcoinrpc:/home/osboxes/Desktop/eloipool_Blakecoin/python-base58:/home/osboxes/Desktop/eloipool_Blakecoin/midstate \
nohup /home/osboxes/Desktop/eloipool_Blakecoin/eloipool.py 2>&1 >/dev/null &

python /home/osboxes/Desktop/eloipool_Blakecoin/merged-mine-proxy.py -w 8330 -p http://ssecreteloipool:222@localhost:8337/ -x http://phousername:phopassword@localhost:9377/ -l /home/osboxes/Desktop/eloipool_Blakecoin/mmp_log.txt >/dev/null &

i have changed it now to

Code:
#!/bin/sh

PYTHONPATH=/home/osboxes/Desktop/eloipool_Blakecoin/python-bitcoinrpc:/home/osboxes/Desktop/eloipool_Blakecoin/python-base58:/home/osboxes/Desktop/eloipool_Blakecoin/midstate \
nohup /home/osboxes/Desktop/eloipool_Blakecoin/eloipool.py 2>&1 >/dev/null &
wait
python /home/osboxes/Desktop/eloipool_Blakecoin/merged-mine-proxy.py -w 8330 -p http://ssecreteloipool:222@localhost:8337/ -x http://phousername:phopassword@localhost:9377/ -l /home/osboxes/Desktop/eloipool_Blakecoin/mmp_log.txt >/dev/null &

and now it is as followed:
The error occurs further, but even after the exception it still writes the logfile. I will leave it hashing now to see if it really finds a block on PHO chain too. Can it be, that i started both processes too fast?

But even if so... it would be interesting, what raises this exception. I am using the merged-mine-proxy that is included in the eloipool_Blakecoin git. Is there maybe a separate updated one?
Could you think of any place where to get further information on this fault? I googled for it, but didnt find any suitable thing (suitable for my mind Cheesy ).

I will report back, when i found a BLC block, as latest then i should have found a PHO block too... i'm a bit excited and nervous now, as i want it to run Cheesy

no that is the updated one  Cheesy  *just checked Luke Jr github and link to old mmp is dead so yeah as I said that is latest updated one in my repo on github

I dont run it as one and i also use bash vs sh this is my reset/start script
Code:
#! /bin/bash
cd /yourpath/eloipool_Blakecoin
pkill -f -Uroot merged-mine-proxy
sleep 2
/yourpath/scripts/mmp.sh >/dev/null
sleep 1
/yourpath/scripts/run-eloipool.sh 2>&1 >/dev/null &
exit 1


my mmp.sh is similar to yours just with more rpc's  *again handled with "#! /bin/bash"
Code:
#! /bin/bash
sudo nice -n -2 nohup python /yourpath/eloipool_Blakecoin/merged-mine-proxy -w 8330 -p http://ssecreteloipool:[email protected]:8337/ ... rpc's here .... -l /yourpath/eloipool_Blakecoin/mmp_log.txt -s 16 >/dev/null &

my run-eloipool.sh
Code:
#!/bin/bash

cd "$(dirname ${BASH_SOURCE[0]})"
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

pkill -f -Uroot eloipool.py
wait

PYTHONPATH=$PYTHONPATH:$DIR/../python-bitcoinrpc/jsonrpc:$DIR/../python-bitcoinrpc/bitcoinrpc:$DIR/../python-base58:/usr/local/lib/python3.2/dist-packages/cymysql \

sudo nice -n 1 nohup python3 ../eloipool_Blakecoin/eloipool.py 2>&1 >/dev/null &

using nice and mysql which is not necessary for you doing a solo merged pool and midstate can be dropped
jr. member
Activity: 67
Merit: 3
So now. Maybe i should have said i start eloipool and mmp in one runit.sh

Code:
#!/bin/sh

PYTHONPATH=/home/osboxes/Desktop/eloipool_Blakecoin/python-bitcoinrpc:/home/osboxes/Desktop/eloipool_Blakecoin/python-base58:/home/osboxes/Desktop/eloipool_Blakecoin/midstate \
nohup /home/osboxes/Desktop/eloipool_Blakecoin/eloipool.py 2>&1 >/dev/null &

python /home/osboxes/Desktop/eloipool_Blakecoin/merged-mine-proxy.py -w 8330 -p http://ssecreteloipool:222@localhost:8337/ -x http://phousername:phopassword@localhost:9377/ -l /home/osboxes/Desktop/eloipool_Blakecoin/mmp_log.txt >/dev/null &

i have changed it now to

Code:
#!/bin/sh

PYTHONPATH=/home/osboxes/Desktop/eloipool_Blakecoin/python-bitcoinrpc:/home/osboxes/Desktop/eloipool_Blakecoin/python-base58:/home/osboxes/Desktop/eloipool_Blakecoin/midstate \
nohup /home/osboxes/Desktop/eloipool_Blakecoin/eloipool.py 2>&1 >/dev/null &
wait
python /home/osboxes/Desktop/eloipool_Blakecoin/merged-mine-proxy.py -w 8330 -p http://ssecreteloipool:222@localhost:8337/ -x http://phousername:phopassword@localhost:9377/ -l /home/osboxes/Desktop/eloipool_Blakecoin/mmp_log.txt >/dev/null &

and now it is as followed:
The error occurs further, but even after the exception it still writes the logfile. I will leave it hashing now to see if it really finds a block on PHO chain too. Can it be, that i started both processes too fast?

But even if so... it would be interesting, what raises this exception. I am using the merged-mine-proxy that is included in the eloipool_Blakecoin git. Is there maybe a separate updated one?
Could you think of any place where to get further information on this fault? I googled for it, but didnt find any suitable thing (suitable for my mind Cheesy ).

I will report back, when i found a BLC block, as latest then i should have found a PHO block too... i'm a bit excited and nervous now, as i want it to run Cheesy
jr. member
Activity: 67
Merit: 3
Waited for a few minutes now and have to say it fails after the exception. No more output. Sad Hoped it will go on.

Have not tried to change gotwork diff yet. But can do so.
legendary
Activity: 1509
Merit: 1030
Solutions Architect
Then at least i am not alone.

But anything must have changed again... now i get constant output into my logfile:

Code:
2018-01-17T09:48:16.833780,solve,=,0,1c3bbd5c20a7c19d65088877a814cdf9d5107c96293f5b840389c90000000000
2018-01-17T09:48:20.372013,solve,=,0,c7ff512c368a5e5cc9074f41bba82a8cbdda3b6b16a953dcec27160000000000
2018-01-17T09:48:29.984226,solve,=,0,efac8bb9e695ea58b3e147aaf1a40dfbf39b6ae685db6837d608110200000000
2018-01-17T09:48:39.473773,solve,=,0,0da20844bd71b4b7b40a824434afc017d0216f01101918ee5a4f710100000000
2018-01-17T09:48:48.302358,solve,=,0,b81e5ec36fb684ecc8667748477af01d7dc3ddbf1e82de7c7614d80000000000
2018-01-17T09:48:57.405491,solve,=,0,e03ba51a21407d8cb2481b63a75a989e8157a5eb1c493e578edc130700000000
2018-01-17T09:49:07.811988,solve,=,0,aef5efa6927f258ceb4b8cd96f152627288cac6f31c6614a7fa21a0300000000
2018-01-17T09:49:10.203183,solve,=,0,b81ea62197b151004a17a86de7a823c76c2619da974245b32c11320200000000
2018-01-17T09:49:11.433996,solve,=,0,fbfaacd89cadc66e5812b62873e66520127c1bce96575940b20b840100000000
2018-01-17T09:49:12.659532,solve,=,0,395c318f43cfe5ddbf006f857e732a2082b06d1eb4d6c8b97252440300000000
2018-01-17T09:49:13.891554,solve,=,0,f7f07c7518dd2491e7d315229bbc48bd91e7ca39834ba4c86ea3600700000000
2018-01-17T09:49:15.024088,solve,=,0,fb01681f1a8cb1e35d59301b749d0eeb3c7f673d5df27e14bfdcd30100000000
2018-01-17T09:49:21.452645,solve,=,0,7e21814bd25fa4a5762d310ba10beb149465115d641b0d2f9a27860500000000
2018-01-17T09:49:30.904590,solve,=,0,0ce49924d878ad6bbab8fc8a13551ea9478228f4df42853fbc2b2b0400000000
2018-01-17T09:49:36.527601,solve,=,0,9d40954184fc919c90b2093730e9a7d1310ffcbed911039c9338cc0000000000
2018-01-17T09:49:39.678575,solve,=,0,4134073e9a214621d19b9f6229d656055de7d2ab9c688fbbc331220100000000
2018-01-17T09:49:49.482030,solve,=,0,d08e5ea22b39e707c478a6d3ad7064227001a1a7763463a998eb8f0200000000
2018-01-17T09:49:50.303801,solve,=,0,5871736c60d1a6b5f05117146d154c479935eedc5ca09cd3b9a2370000000000

But the exception is still occurring

that output looks good  Smiley

does it fail after the exception or does it continue as above?

did you also try to up the gotwork diff say 256 or 1024?
jr. member
Activity: 67
Merit: 3
Then at least i am not alone.

But anything must have changed again... now i get constant output into my logfile:

Code:
2018-01-17T09:48:16.833780,solve,=,0,1c3bbd5c20a7c19d65088877a814cdf9d5107c96293f5b840389c90000000000
2018-01-17T09:48:20.372013,solve,=,0,c7ff512c368a5e5cc9074f41bba82a8cbdda3b6b16a953dcec27160000000000
2018-01-17T09:48:29.984226,solve,=,0,efac8bb9e695ea58b3e147aaf1a40dfbf39b6ae685db6837d608110200000000
2018-01-17T09:48:39.473773,solve,=,0,0da20844bd71b4b7b40a824434afc017d0216f01101918ee5a4f710100000000
2018-01-17T09:48:48.302358,solve,=,0,b81e5ec36fb684ecc8667748477af01d7dc3ddbf1e82de7c7614d80000000000
2018-01-17T09:48:57.405491,solve,=,0,e03ba51a21407d8cb2481b63a75a989e8157a5eb1c493e578edc130700000000
2018-01-17T09:49:07.811988,solve,=,0,aef5efa6927f258ceb4b8cd96f152627288cac6f31c6614a7fa21a0300000000
2018-01-17T09:49:10.203183,solve,=,0,b81ea62197b151004a17a86de7a823c76c2619da974245b32c11320200000000
2018-01-17T09:49:11.433996,solve,=,0,fbfaacd89cadc66e5812b62873e66520127c1bce96575940b20b840100000000
2018-01-17T09:49:12.659532,solve,=,0,395c318f43cfe5ddbf006f857e732a2082b06d1eb4d6c8b97252440300000000
2018-01-17T09:49:13.891554,solve,=,0,f7f07c7518dd2491e7d315229bbc48bd91e7ca39834ba4c86ea3600700000000
2018-01-17T09:49:15.024088,solve,=,0,fb01681f1a8cb1e35d59301b749d0eeb3c7f673d5df27e14bfdcd30100000000
2018-01-17T09:49:21.452645,solve,=,0,7e21814bd25fa4a5762d310ba10beb149465115d641b0d2f9a27860500000000
2018-01-17T09:49:30.904590,solve,=,0,0ce49924d878ad6bbab8fc8a13551ea9478228f4df42853fbc2b2b0400000000
2018-01-17T09:49:36.527601,solve,=,0,9d40954184fc919c90b2093730e9a7d1310ffcbed911039c9338cc0000000000
2018-01-17T09:49:39.678575,solve,=,0,4134073e9a214621d19b9f6229d656055de7d2ab9c688fbbc331220100000000
2018-01-17T09:49:49.482030,solve,=,0,d08e5ea22b39e707c478a6d3ad7064227001a1a7763463a998eb8f0200000000
2018-01-17T09:49:50.303801,solve,=,0,5871736c60d1a6b5f05117146d154c479935eedc5ca09cd3b9a2370000000000

But the exception is still occurring
legendary
Activity: 1509
Merit: 1030
Solutions Architect
I am at a loss then as it should be working  Cry
jr. member
Activity: 67
Merit: 3
This is how i call mmp

Code:
python /home/osboxes/Desktop/eloipool_Blakecoin/merged-mine-proxy.py -w 8330 -p http://ssecreteloipool:222@localhost:8337/ -x http://phousername:phopassword@localhost:9377/ -l /home/osboxes/Desktop/eloipool_Blakecoin/mmp_log.txt -s 16 >/dev/null &

Here the part of config.py

Code:
# Secret username allowed to use setworkaux
SecretUser = "ssecreteloipool"

# URI to send gotwork with info for every share submission
#GotWorkURI = 'http://mergedproxyuser:[email protected]:8330/'
GotWorkURI = 'http://ssecreteloipool:[email protected]:8330'

# Share hashes must be below this to be submitted to gotwork
GotWorkTarget = 0x0000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffff

JSONRPCAddress is the same, as you have posted.
Checked even the Photon rpc config, it is the same as called in mmp too.
legendary
Activity: 1509
Merit: 1030
Solutions Architect
What's wrong with the post??
It's a little too old!The author should update the post,then
the others would participate in.
Is anybody still mining the coin??
How are the price of the Blakecoin??
Does it deserve mining?
Looking forward to your suggestions!



are you on crack Huh

OP is upto date and date of post is release date on here yes 2013 when Blakecoin was released but has been updated since many times?

current network hashrate is 1.3TH/s so yes plenty mining

check exchanges yourself

wtf

read or go away!!
member
Activity: 252
Merit: 12
What's wrong with the post??
It's a little too old!The author should update the post,then
the others would participate in.
Is anybody still mining the coin??
How are the price of the Blakecoin??
Does it deserve mining?
Looking forward to your suggestions!

legendary
Activity: 1509
Merit: 1030
Solutions Architect
Nope didnt work as well. First the exception raised instant. Then again after a short while.

What i did? First uninstalled python-twisted and then installed 12.0.0 as you said.

As it always says Could not connect to backend http://localhost:8337 i tried to open it on the browser. Output is JSON:

Code:

result null
id null
error
name "JSONRPCError"
code 100
message "Parse error"

It may be just coincidence, as there shouldnt be any relation, but for me it felt as if the exception is raised, when my miners found a share bigger than 1k. Must be imagination.

very strange it should be working  Undecided

not surprised about the browser though as you need to pass user:pass as per your config

what diff shares are you submitting via mmp(GotWorkTarget)?
Code:
GotWorkTarget = 0x0000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffff
 

what is your GotWorkURI is same as what mmp is using?
Code:
GotWorkURI = 'http://ssecreteloipool:[email protected]:8330'

what is your JSONRPCAddresses ?
Code:
JSONRPCAddresses = (
('', 8337),
)

above would match your mmp command
Code:
python /home/osboxes/Desktop/eloipool_Blakecoin/merged-mine-proxy.py -w 8330 -p http://ssecreteloipool:[email protected]:8337/ -x http://photonrpc:photonrpcpass@localhost:9377/

jr. member
Activity: 67
Merit: 3
Nope didnt work as well. First the exception raised instant. Then again after a short while.

What i did? First uninstalled python-twisted and then installed 12.0.0 as you said.

As it always says Could not connect to backend http://localhost:8337 i tried to open it on the browser. Output is JSON:

Code:

result null
id null
error
name "JSONRPCError"
code 100
message "Parse error"

It may be just coincidence, as there shouldnt be any relation, but for me it felt as if the exception is raised, when my miners found a share bigger than 1k. Must be imagination.
legendary
Activity: 1509
Merit: 1030
Solutions Architect
So. Ubuntu 16.04:

At least now i get the trace. But Could not connect to backend? mhhm

So if i understand it correct, it is a problem with the connection of the Secret User

because this one should be connected to port 8337. Stupid i dont understand this lol Sad And why not all the time, but repetitive for a short moment.

make sure you have twisted installed for python and if it is what version do you have?

Code:
sudo apt-get install python-twisted

the secret use details are set in eloipool config.py

Twisted is installed.

Code:
osboxes@osboxes:~$ dpkg -s python-twisted
Package: python-twisted
Status: install ok installed
Priority: extra
Section: python
Installed-Size: 24
Maintainer: Ubuntu Developers
Architecture: all
Source: twisted
Version: 16.0.0-1
Provides: python2.7-twisted
Depends: python-twisted-core (>= 16.0.0-1), python:any (<< 2.8), python:any (>= 2.7~)

The behaviour of mmp seems to be the same as in 17.04 (besides the traced output). After starting, i get something like
Code:
2018-01-16T20:28:37.615489,solve,=,0,854e4bda774d0440d4309b791cbde04e62f714d844a274be2344f50400000000
2018-01-16T20:29:22.851355,solve,=,0,6bba9e6570c7c2a219656ef603c031612beb8c6563fac25820a3890500000000
and a minute later the error trace. *sigh*

Secretuser is configured in config.py as mentioned in Ignatius' guide.

ok so maybe try an older version of twisted??

Code:
pip install Twisted==12.0.0
jr. member
Activity: 67
Merit: 3
So. Ubuntu 16.04:

At least now i get the trace. But Could not connect to backend? mhhm

So if i understand it correct, it is a problem with the connection of the Secret User

because this one should be connected to port 8337. Stupid i dont understand this lol Sad And why not all the time, but repetitive for a short moment.

make sure you have twisted installed for python and if it is what version do you have?

Code:
sudo apt-get install python-twisted

the secret use details are set in eloipool config.py

Twisted is installed.

Code:
osboxes@osboxes:~$ dpkg -s python-twisted
Package: python-twisted
Status: install ok installed
Priority: extra
Section: python
Installed-Size: 24
Maintainer: Ubuntu Developers
Architecture: all
Source: twisted
Version: 16.0.0-1
Provides: python2.7-twisted
Depends: python-twisted-core (>= 16.0.0-1), python:any (<< 2.8), python:any (>= 2.7~)

The behaviour of mmp seems to be the same as in 17.04 (besides the traced output). After starting, i get something like
Code:
2018-01-16T20:28:37.615489,solve,=,0,854e4bda774d0440d4309b791cbde04e62f714d844a274be2344f50400000000
2018-01-16T20:29:22.851355,solve,=,0,6bba9e6570c7c2a219656ef603c031612beb8c6563fac25820a3890500000000
and a minute later the error trace. *sigh*

Secretuser is configured in config.py as mentioned in Ignatius' guide.
newbie
Activity: 27
Merit: 0
legendary
Activity: 1509
Merit: 1030
Solutions Architect
is there a developer of the pool ?? I can not connect to diff low

all my pools at blakecoin.com are fixed diff 32
64 diff no?

no diff 64

sorry
newbie
Activity: 27
Merit: 0
is there a developer of the pool ?? I can not connect to diff low

all my pools at blakecoin.com are fixed diff 32
64 diff no?
legendary
Activity: 1509
Merit: 1030
Solutions Architect
is there a developer of the pool ?? I can not connect to diff low

all my pools at blakecoin.com are fixed diff 32
Pages:
Jump to: