Author

Topic: [∞ YH] solo.ckpool.org 1% fee solo mining USA/DE 251 blocks solved! - page 416. (Read 1514501 times)

legendary
Activity: 1344
Merit: 1024
Mine at Jonny's Pool
Congrats!  3.8TH/s... that's about what I've got in hardware... maybe I should just throw it on here full time instead of just a day or so a week Smiley
legendary
Activity: 896
Merit: 1001
Code:
[2015-04-09 09:17:04] Possible block solve diff 147564465719.021576 !
[2015-04-09 09:17:04] BLOCK ACCEPTED!
[2015-04-09 09:17:04] Solved and confirmed block 351364

Congratulations to 1L8nTxHTwWLMDkjGNMMVLfzSTgQqJdeMNM with only ~3.8TH!

Nice find with a difficulty of 147 billion.  Very nice indeed.
newbie
Activity: 55
Merit: 0
https://github.com/yqons/solo-mining-stats

Updated:
-Changed the "layout", Added Network Difficulty (Net. Diff.: )
-Address check on the pool
-Updated and improved the loop
-Fix for the users that already found the last block on the pool "blocks.txt"

hero member
Activity: 742
Merit: 500
nice 6k$ for the easter time!

congrats!
-ck
legendary
Activity: 4088
Merit: 1631
Ruu \o/
Code:
[2015-04-09 09:17:04] Possible block solve diff 147564465719.021576 !
[2015-04-09 09:17:04] BLOCK ACCEPTED!
[2015-04-09 09:17:04] Solved and confirmed block 351364

Congratulations to 1L8nTxHTwWLMDkjGNMMVLfzSTgQqJdeMNM with only ~3.8TH!
newbie
Activity: 57
Merit: 0
legendary
Activity: 910
Merit: 1000
just added 4ths, again..

saw stats had gone 0, so i looked here who got  this one, no info yet
legendary
Activity: 4592
Merit: 1851
Linux since 1997 RedHat 4
Another lucky winner (awaiting confirm)
https://blockchain.info/block/000000000000000007737130bcc41b59c091e90b59d5b9e492dd20f458890df0

1L8nTxHTwWLMDkjGNMMVLfzSTgQqJdeMNM - about 4THs
hero member
Activity: 543
Merit: 500
Dang, getting close  Shocked - "bestshare": 40472877024.125877

http://solo.ckpool.org/users/1LjZmRdMV7Mk88bx7oMMWgKWaFF8yG1qtp


So close... too bad it wasn't the middle of December, 2014 Smiley

Yeah I hear ya! That share came from a misbehaving S5 too  Tongue
legendary
Activity: 1344
Merit: 1024
Mine at Jonny's Pool
Dang, getting close  Shocked - "bestshare": 40472877024.125877

http://solo.ckpool.org/users/1LjZmRdMV7Mk88bx7oMMWgKWaFF8yG1qtp


So close... too bad it wasn't the middle of December, 2014 Smiley
hero member
Activity: 543
Merit: 500
legendary
Activity: 4256
Merit: 8551
'The right to privacy matters'
Is there any target number of shares that you try to reach to get a block? or is it a competition of shares vs the network?

Just wondering since I had a cool share of ~572,000,000 on my s3 pointed at slush



needs to be higher then the diff which is ~49,000,000,000


http://solo.ckpool.org/users/1JdC6Xg3ajT3rge3FgPNSYYFpmf53Vbtje


I got 786,465,993 for this round
legendary
Activity: 2212
Merit: 1118
Lie down. Have a cookie
Is there any target number of shares that you try to reach to get a block? or is it a competition of shares vs the network?

Just wondering since I had a cool share of ~572,000,000 on my s3 pointed at slush
newbie
Activity: 55
Merit: 0
If you mine the block you get 25btc on your address, this is the simple and fastest way to check it since most people have less on their wallet
No, it's not the simple and fastest way to check.  All your program does is check whether or not an address has a balance of more than 20 coins.  Your program will fail at the next block halving since the reward will only be 12.5BTC.

If you're going to implement something, do it right.  Kano has explained exactly how to do it.

Well is just 1 number to change and the halving is estimated to happen next year (2016-07-28), however i will look how i can implement the suggestion of Kano Wink

EDIT:
Updated the jackpot check
legendary
Activity: 1344
Merit: 1024
Mine at Jonny's Pool
If you mine the block you get 25btc on your address, this is the simple and fastest way to check it since most people have less on their wallet
No, it's not the simple and fastest way to check.  All your program does is check whether or not an address has a balance of more than 20 coins.  Your program will fail at the next block halving since the reward will only be 12.5BTC.

If you're going to implement something, do it right.  Kano has explained exactly how to do it.
newbie
Activity: 55
Merit: 0
I've made a little program in python to check my stats without reloading the page, you can download it here: https://github.com/yqons/solo-mining-stats

Check your solo mining stats on solo.ckpool.org, and check every 10 minute if you have found the jackpot aka block

To run:
Code:
Enter you address inside addr.txt file (on the first line)
pip install datetime requests dateutil.relativedelta colorama
python check.py



Tips: 1GrC12hbtMNPiYumftZ4B3Y1MVyCuZrKeM

Sorry for the English btw
Checked out your code... it'll ping jackpot every 10 minutes if you happen to have more than 20BTC in your address.  Might want to consider another way to notify people if they've actually hit the block, since just checking the balance of an address is no indicator that the user found a block.


If you mine the block you get 25btc on your address, this is the simple and fastest way to check it since most people have less on their wallet
legendary
Activity: 4592
Merit: 1851
Linux since 1997 RedHat 4
Well ... the correct way to check it is:

Each time there's a new block check either:
1) The coinbase sig contains /solo.ckpool.org/
or
2) The 2nd address in the coinbase transaction is 1PKN98VN2z5gwSGZvGKS2bj8aADZBkyhkZ
 (and there are 2, and only 2, addresses in the coinbase transaction)

Then if the other (1st) coinbase address matches the user's address then they found the block here.

Though it's probably easier to simply check if the first address in the coinbase transaction is the user's address since that could only be a false positive if the same user used the same address and found a solo block somewhere else.
legendary
Activity: 1344
Merit: 1024
Mine at Jonny's Pool
I've made a little program in python to check my stats without reloading the page, you can download it here: https://github.com/yqons/solo-mining-stats

Check your solo mining stats on solo.ckpool.org, and check every 10 minute if you have found the jackpot aka block

To run:
Code:
Enter you address inside addr.txt file (on the first line)
pip install datetime requests dateutil.relativedelta colorama
python check.py



Tips: 1GrC12hbtMNPiYumftZ4B3Y1MVyCuZrKeM

Sorry for the English btw
Checked out your code... it'll ping jackpot every 10 minutes if you happen to have more than 20BTC in your address.  Might want to consider another way to notify people if they've actually hit the block, since just checking the balance of an address is no indicator that the user found a block.
newbie
Activity: 55
Merit: 0
I've made a little program in python to check my stats without reloading the page, you can download it here: https://github.com/yqons/solo-mining-stats

Check your solo mining stats on solo.ckpool.org, and check every 10 minute if you have found the jackpot aka block

To run:
Code:
Enter you address inside addr.txt file (on the first line)
pip install datetime requests dateutil.relativedelta colorama
python check.py



Tips: 1GrC12hbtMNPiYumftZ4B3Y1MVyCuZrKeM

Sorry for the English btw
legendary
Activity: 1736
Merit: 1006


 ...

how do you calculate the daily chance?

im at about 1.8T
i have 2 S3s at 200M 400ghs and 1 S5 at 325 1.0Ths

https://bitcoinwisdom.com/bitcoin/difficulty

 plug in your hashrate

current adjustment auto pops up and 1.8th earning rate  is 0.01831 btc in a day

25 btc divide by 0.01831 =  1365.374 or close to 1365 to one chance.  This is only a close estimate

my 2.3 th = 0.02339 btc a day or

25 / .02339 =  or 1068  to 1 chance each day  .


until diff adjust moves.

i kinda wish i jumped on the solo thing when i first got my s3s.. the diff was under 20b hah..

i probably would have gotten a block by now.. Sad
Jump to: