Bitcoin Forum
March 19, 2024, 05:14:32 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 [69] 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 ... 482 »
  Print  
Author Topic: [∞ YH] solo.ckpool.org 2% fee solo mining USA/DE 255 blocks solved!  (Read 1514064 times)
zapphood
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
April 10, 2015, 08:44:58 AM
 #1361


Thank you both again.  I managed to get everything installed and working more or less; my last update time displays as a negative number though.  Actually, it always displays about -5 29, everything updates as it should, but the time just sits at the negative value.  Any idea what I could have messed up?
http://i60.tinypic.com/24lu0b9.jpg


I modified the script with a unixtime stamp converter to show the lastupdate correct and i modified the layout for me.


Modified Script Download: solo-mining-stats-new.zip


https://i.imgur.com/KYQBaq0.png
1710825272
Hero Member
*
Offline Offline

Posts: 1710825272

View Profile Personal Message (Offline)

Ignore
1710825272
Reply with quote  #2

1710825272
Report to moderator
1710825272
Hero Member
*
Offline Offline

Posts: 1710825272

View Profile Personal Message (Offline)

Ignore
1710825272
Reply with quote  #2

1710825272
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, which will follow the rules of the network no matter what miners do. Even if every miner decided to create 1000 bitcoins per block, full nodes would stick to the rules and reject those blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1710825272
Hero Member
*
Offline Offline

Posts: 1710825272

View Profile Personal Message (Offline)

Ignore
1710825272
Reply with quote  #2

1710825272
Report to moderator
1710825272
Hero Member
*
Offline Offline

Posts: 1710825272

View Profile Personal Message (Offline)

Ignore
1710825272
Reply with quote  #2

1710825272
Report to moderator
1710825272
Hero Member
*
Offline Offline

Posts: 1710825272

View Profile Personal Message (Offline)

Ignore
1710825272
Reply with quote  #2

1710825272
Report to moderator
Mikestang
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
April 10, 2015, 12:24:35 PM
 #1362


I modified the script with a unixtime stamp converter to show the lastupdate correct and i modified the layout for me.


Modified Script Download: solo-mining-stats-new.zip





How do I know that code is clean?  I do not install/run things from random uploads.
zapphood
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
April 10, 2015, 12:35:10 PM
Last edit: April 10, 2015, 01:16:38 PM by zapphood
 #1363


I modified the script with a unixtime stamp converter to show the lastupdate correct and i modified the layout for me.


Modified Script Download: solo-mining-stats-new.zip



How do I know that code is clean?  I do not install/run things from random uploads.

Hmmmm...but you download the script from github, how do you know that this code is clean?  Wink Cheesy

the zipfile was only a little help for you....but it is no problem that you don't trust me.

here ist the modified script as source (check.py) to copy & paste if you want.

cheers,
zapphood

Code:
#!/usr/bin/python
import sys
import datetime
import requests
import dateutil.relativedelta
import time
import os


from colorama import init, Back, Fore

init()

clear = lambda: os.system('cls')
clear()

# Welcome, check your stats for the solo.ckpool.org pool, edit the file addr.txt with your Bitcoin address, your balance will be checked around every 10 minute.
# If you see the background green, you won the jackpot! press a key to skip'
#
# Made by yqons (Donate 1GrC12hbtMNPiYumftZ4B3Y1MVyCuZrKeM)
#
# Modified by Zapphood


#load address
with open('addr.txt', 'r') as f:
  addr = str(f.readline()).strip()
#check if is correct
urlx1 = 'https://blockexplorer.com/q/addressbalance/' + addr
response12 = requests.get(urlx1)
datax2 = float(response12.text)

#check your last block found on the pool
with open('blocks.txt', 'r') as f2:
  lastbf = str(f2.readline()).strip()

if datax2>=0:
urlx1x = 'http://solo.ckpool.org/users/' + addr
response12x = requests.get(urlx1x)
datax2x = str(response12x.text)
if not datax2x[:1]=='<':
print("Address loaded correctly, GOOD LUCK!")
else:
print("Address not found on the pool, please check your address inside addr.txt")
sys.exit()
else:
print("Address error, please check your address inside addr.txt")
sys.exit()


time.sleep(1.55)

url12 = 'https://blockexplorer.com/q/getdifficulty'
response1212 = requests.get(url12)
datax12 = '{0:.3f}'.format(float(response1212.text))
netdiff = datax12

#timer
x=0

while True:

x+=1

#jackpot check every 10 minutes(around) this is the block time avg
if not x%8:
urlx = 'https://blockchain.info/address/1PKN98VN2z5gwSGZvGKS2bj8aADZBkyhkZ?format=json'
response1 = requests.get(urlx)
datax = response1.json()
blockrec = str(datax['txs'][0][u'block_height'])
if datax['txs'][0][u'out'][0][u'addr']==addr and lastbf!=blockrec :
clear()
text = str(float(datax['txs'][0][u'out'][0][u'value'])/100000000) +" *********** JACKPOT *********** "+ str(float(datax['txs'][0][u'out'][0][u'value'])/100000000) +" (send me some LOL)"
print(Back.YELLOW + text)
print(Back.RED + text)
print(Back.GREEN + text)
print(Fore.YELLOW + text)
print(Fore.RED + text)
print(Fore.BLACK + text)
print ""
print "Block Height: " + blockrec

f = open('blocks.txt','w')
f.write(blockrec)

time.sleep(0.1)

break

url = 'http://solo.ckpool.org/users/' + addr
response = requests.get(url)
data = response.json()
m1avg = data['hashrate1m']
m5avg = data['hashrate5m']
h1avg = data['hashrate1hr']
d1avg = data['hashrate1d']
d7avg = data['hashrate7d']


bests = '{0:.3f}'.format(float(data['bestshare']))

clear()
print 'Stats for BTC Address: ' + addr
print ''
        print 'Lastupdate: ' + time.ctime(int(data['lastupdate']))
        print ''
print 'Hashrate (1m): ' + str(m1avg) + 'H/s'
print 'Hashrate (5m): ' + str(m5avg) + 'H/s'
print 'Hashrate (1h): ' + str(h1avg) + 'H/s'
print 'Hashrate (1d): ' + str(d1avg) + 'H/s'
print 'Hashrate (7d): ' + str(d7avg) + 'H/s'
print ''
print 'Net. Diff.: ' + str(netdiff)
print 'Best share: ' + str(bests)


time.sleep(75)
cisahasa
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


View Profile
April 10, 2015, 01:16:31 PM
 #1364

looking good now, and lastupdate added back
( i hate to keep browser open all the time)


Stats for       : 1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hashrate 1m : 3.21TH/s
Hashrate 5m : 3.21TH/s
Hashrate 1d  : 2.08TH/s
Hashrate 7d  : 501GH/s
Lastupdate    : Fri Apr 10 16:15:01 2015
Net. Diff.       : 49446390688.241
Best share     : 726322442.485



Mikestang
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
April 10, 2015, 09:05:58 PM
 #1365


the zipfile was only a little help for you....but it is no problem that you don't trust me.

here ist the modified script as source (check.py) to copy & paste if you want.


Thank you, it's not that I don't trust you, it's that I don't trust anyone.  Wink
o_solo_miner
Legendary
*
Offline Offline

Activity: 2405
Merit: 1457


-> morgen, ist heute, schon gestern <-


View Profile
April 11, 2015, 07:39:38 PM
 #1366

 Grin Grin Grin

BLOCK

Congrats to the lucky 15X8ziBTCLEQCU2eUwWoQCYqJV7CoJSFoC one!

from the creator of CGMiner http://solo.ckpool.org for Solominers
paused: passthrough for solo.ckpool.org => stratum+tcp://rfpool.org:3334
mavericklm
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


View Profile
April 11, 2015, 07:42:02 PM
 #1367

https://blockchain.info/tx/440f5529ddd64bfd3e3c094d28c14c2f47b3d28845e0de6505dc0c98165011d9

another lucky one
congrats!

please don't tell he had only 2th/s or something like that Smiley)
zapphood
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
April 11, 2015, 07:46:50 PM
 #1368

Kawoom!  The next Solo Block  Cool

Congrats to the lucky winner.
ezeminer
Legendary
*
Offline Offline

Activity: 2156
Merit: 1114

Lie down. Have a cookie


View Profile
April 11, 2015, 09:16:53 PM
 #1369

https://blockchain.info/tx/440f5529ddd64bfd3e3c094d28c14c2f47b3d28845e0de6505dc0c98165011d9

another lucky one
congrats!

please don't tell he had only 2th/s or something like that Smiley)

http://solo.ckpool.org/users/15X8ziBTCLEQCU2eUwWoQCYqJV7CoJSFoC

Looks like 2th Cheesy

tutorialevideo
Legendary
*
Offline Offline

Activity: 1161
Merit: 1001

Don`t invest more than you can afford to lose


View Profile WWW
April 11, 2015, 09:17:20 PM
 #1370

https://blockchain.info/tx/440f5529ddd64bfd3e3c094d28c14c2f47b3d28845e0de6505dc0c98165011d9

another lucky one
congrats!

please don't tell he had only 2th/s or something like that Smiley)

{"hashrate1m": "2.35T", "hashrate5m": "2.21T", "hashrate1hr": "2.2T", "hashrate1d": "1.9T", "hashrate7d": "1.54T", "lastupdate": 1428786966, "workers": 3, "bestshare": 3495429.7471186719}

Smiley)

Hosting Bitcoin and any mining gear in Europe/Romania.

https://bitcointalk.org/index.php?topic=5228685.msg53918147#msg53918147

For more info you can write me!
kipper01
Full Member
***
Offline Offline

Activity: 214
Merit: 100

1KippERXwH1PdBxKNt1ksgqh89WBv6CtWQ


View Profile
April 11, 2015, 09:24:14 PM
 #1371

https://blockchain.info/tx/440f5529ddd64bfd3e3c094d28c14c2f47b3d28845e0de6505dc0c98165011d9

another lucky one
congrats!

please don't tell he had only 2th/s or something like that Smiley)

Nice!

-ck (OP)
Legendary
*
Offline Offline

Activity: 4046
Merit: 1622


Ruu \o/


View Profile WWW
April 11, 2015, 10:20:37 PM
Last edit: April 11, 2015, 11:11:51 PM by -ck
 #1372

Code:
[2015-04-11 19:38:06] Possible block solve diff 61109623328.939552 !
[2015-04-11 19:38:06] BLOCK ACCEPTED!
[2015-04-11 19:38:06] Solved and confirmed block 351709

Congratulations to 15X8ziBTCLEQCU2eUwWoQCYqJV7CoJSFoC with the 33rd block solved!

I'm pretty sure he's the smallest miner to date to find a block on solo.ckpool.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
Mikestang
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
April 12, 2015, 04:01:42 AM
 #1373

Awesome!  Way to score for team "little guy".

Signed,
775gh/s
Mikestang
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
April 12, 2015, 06:38:14 AM
 #1374


Thank you both again.  I managed to get everything installed and working more or less; my last update time displays as a negative number though.  Actually, it always displays about -5 29, everything updates as it should, but the time just sits at the negative value.  Any idea what I could have messed up?



I modified the script with a unixtime stamp converter to show the lastupdate correct and i modified the layout for me.


Modified Script Download: solo-mining-stats-new.zip





Thank you, your change fixed my lastupdate to display the correct time.  I also like your layout, well done.  Cool
zapphood
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
April 12, 2015, 08:39:57 AM
 #1375

Thank you, your change fixed my lastupdate to display the correct time.  I also like your layout, well done.  Cool

I'm glad you like it  Smiley
aurel57
Legendary
*
Offline Offline

Activity: 1176
Merit: 1000



View Profile
April 12, 2015, 12:59:46 PM
 #1376

Code:
[2015-04-11 19:38:06] Possible block solve diff 61109623328.939552 !
[2015-04-11 19:38:06] BLOCK ACCEPTED!
[2015-04-11 19:38:06] Solved and confirmed block 351709

Congratulations to 15X8ziBTCLEQCU2eUwWoQCYqJV7CoJSFoC with the 33rd block solved!

I'm pretty sure he's the smallest miner to date to find a block on solo.ckpool.

Congrats to the #33 block miner!
cisahasa
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


View Profile
April 12, 2015, 03:14:50 PM
 #1377

waiting to see first screenshot of stats showing block found...  jackpot

PublicP2poolNode
Sr. Member
****
Offline Offline

Activity: 347
Merit: 252


View Profile
April 12, 2015, 06:26:57 PM
Last edit: April 12, 2015, 06:42:57 PM by PublicP2poolNode
 #1378



Every time I wanted to quit my pursuit to solomine a block I would look at the photo above my miners with a quoute from Eleanor Roosevelt that reads "THE FUTURE BELONGS TO THOSE WHO BELIEVE IN THE BEAUTY OF THEIR DREAMS."

I have been solo-mining for much of 2014 on my own node with 230GH/s and with no luck.

In December 2014 I picked up three antminer s1's and two antminer c1's but could not figure out how to solo-mine on my own node with the antminer c1's so I have been exclusively solo-mining between three different solo-mining pools with those miners, although I shut off a few of the s1's about a month ago due to the heat.

Also last month, I rented 1.5PH's for a few hours with no luck either, and also 120THs for about a day and a half.

At times you just want to throw in the towel and give up, And then when you least expect it life may just throw you a bone.

Although I am still in the hole a little bit, this has almost brought me back to even, and I must say that the sense of accomplishment was worth it. I can now say that I have found a block!

So don't give up, and don't throw your life savings renting hashpower, because in this game there are no guarantees and 2TH's can win just the same as 1.5PH

Good luck to you all, may the next block be yours!

WINGS Beta is live - List your ICO for only 5000 WINGS at https://wings.ai Over $650 Million raised by ICOs with WINGS since June 2017
itod
Legendary
*
Offline Offline

Activity: 1974
Merit: 1075


^ Will code for Bitcoins


View Profile
April 12, 2015, 06:57:13 PM
 #1379

Every time I wanted to quit my pursuit to solomine a block I would look at the photo above my miners with a quoute from Eleanor Roosevelt that reads "THE FUTURE BELONGS TO THOSE WHO BELIEVE IN THE BEAUTY OF THEIR DREAMS."

I have been solo-mining for much of 2014 on my own node with 230GH/s and with no luck.

In December 2014 I picked up three antminer s1's and two antminer c1's but could not figure out how to solo-mine on my own node with the antminer c1's so I have been exclusively solo-mining between three different solo-mining pools with those miners, although I shut off a few of the s1's about a month ago due to the heat.

Also last month, I rented 1.5PH's for a few hours with no luck either, and also 120THs for about a day and a half.

At times you just want to throw in the towel and give up, And then when you least expect it life may just throw you a bone.

Although I am still in the hole a little bit, this has almost brought me back to even, and I must say that the sense of accomplishment was worth it. I can now say that I have found a block!

So don't give up, and don't throw your life savings renting hashpower, because in this game there are no guarantees and 2TH's can win just the same as 1.5PH

Good luck to you all, may the next block be yours!


Nice story, really glad you did it. Can only imagined how you felt when those rented 1.5PH failed... How much it costed, BTW?
Mikestang
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
April 12, 2015, 10:00:11 PM
 #1380

Every time I wanted to quit my pursuit to solomine a block I would look at the photo above my miners with a quoute from Eleanor Roosevelt that reads "THE FUTURE BELONGS TO THOSE WHO BELIEVE IN THE BEAUTY OF THEIR DREAMS."

I have been solo-mining for much of 2014 on my own node with 230GH/s and with no luck.

In December 2014 I picked up three antminer s1's and two antminer c1's but could not figure out how to solo-mine on my own node with the antminer c1's so I have been exclusively solo-mining between three different solo-mining pools with those miners, although I shut off a few of the s1's about a month ago due to the heat.

Also last month, I rented 1.5PH's for a few hours with no luck either, and also 120THs for about a day and a half.

At times you just want to throw in the towel and give up, And then when you least expect it life may just throw you a bone.

Although I am still in the hole a little bit, this has almost brought me back to even, and I must say that the sense of accomplishment was worth it. I can now say that I have found a block!

So don't give up, and don't throw your life savings renting hashpower, because in this game there are no guarantees and 2TH's can win just the same as 1.5PH

Good luck to you all, may the next block be yours!


Well done, it's what all us little guys hope for.  Which box found it?

Now go solve another!
Pages: « 1 ... 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 [69] 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 ... 482 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!