Bitcoin Forum
May 05, 2024, 02:41:16 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 [984] 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 ... 2248 »
  Print  
Author Topic: KanoPool since 2014 🐈 - PPLNS and Solo 0.5% fee - Worldwide - 2436 blocks  (Read 5350248 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (50 posts by 3+ users deleted.)
wmabern
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


Visualize whirledps


View Profile
August 22, 2016, 12:31:19 AM
 #19661

Okay, Guys and Gals, lets get this block party Monday ROLLING!
A GREEN star to the next block finder!!

Come on down BLOCKSSSSSSSSSSSSSSSS!

Baby needs new shoes!!  Grin

BITMIXER.IO Gone Baby, Gone.. ;-)
Not any good sig campaigns out there that I want!
1714920076
Hero Member
*
Offline Offline

Posts: 1714920076

View Profile Personal Message (Offline)

Ignore
1714920076
Reply with quote  #2

1714920076
Report to moderator
1714920076
Hero Member
*
Offline Offline

Posts: 1714920076

View Profile Personal Message (Offline)

Ignore
1714920076
Reply with quote  #2

1714920076
Report to moderator
"I'm sure that in 20 years there will either be very large transaction volume or no volume." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714920076
Hero Member
*
Offline Offline

Posts: 1714920076

View Profile Personal Message (Offline)

Ignore
1714920076
Reply with quote  #2

1714920076
Report to moderator
clgrissom3
Legendary
*
Offline Offline

Activity: 1722
Merit: 1032


Carl, aka Sonny :)


View Profile
August 22, 2016, 01:08:23 AM
 #19662

Block by kranium with his 10th Kano block!  This is our 1st block just an hour into the new day!  Cheesy

This is a nice fat block also!  Grin
wmabern
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


Visualize whirledps


View Profile
August 22, 2016, 01:11:15 AM
 #19663

Block by kranium!

To Kranium! Smiley


BITMIXER.IO Gone Baby, Gone.. ;-)
Not any good sig campaigns out there that I want!
kano (OP)
Legendary
*
Online Online

Activity: 4494
Merit: 1806


Linux since 1997 RedHat 4


View Profile
August 22, 2016, 02:22:30 AM
Last edit: August 22, 2016, 02:39:27 AM by kano
 #19664

Hey guys and gals. I wrote a python script that interacts with the Kano API and sends a pushover notification to my mobile device if my hashrate falls below X. Not sure if it would benefit anyone here.

Here's my code:

https://github.com/wobbzz/kanocheck/blob/master/checkhashrate.py

One limitation is that it uses the same hashrate check for every miner, but this could be easily changed by manually defining your workers in a dictionary.
I haven't look at it, and I can't stand a language that decides code execution based on invisible characters ... so I avoid python completely ... and no that's not a complaint about your code Smiley Just thought I'd mention that Smiley

However, to know something of the statistics of workers ...
To know that a worker has stopped is quite simple:
If it hasn't sent a share for 1 minute

1 minute is the best choice Smiley

The stats work as follows:
A worker is expected to send 18 shares per minute = 1 share per 3.3333 seconds.

Shares are like blocks, they follow the same poisson distribution of course since blocks are shares Smiley
So 30 seconds for a share, would be like a 30/3.3333 = 900% block.
However, of course, you find WAY more shares than blocks.

We expect, on average, a >900% share once every 8103.1 shares.
But since shares come in WAY more often than blocks
(18 * 60 * 24) / 8103.1 gives about 3.2 times a day, a 30 second check would fail and say the worker is down.

At one minute, would be 60/3.3333 = >1800% share = on average, once every 65,659,969 shares
i.e. about once every ... 2533 days ... or about once every ~7 years Smiley

So going from 30 seconds to only 60 seconds makes the test exceptionally unlikely to be wrong.
So yep, a VERY reliable test on a worker (if it has only one miner) is that it hasn't submitted a share for 60 seconds.
The API provides the time of the API request and the time of the last share.
Of course you also need to handle when the API isn't working when I do a CKDB restart Smiley
Edit: and of course the cgminer API has this same information.

...

of course, don't forget that if you had 2533 miners, you'd expect, on average, one each day to fail the 1 minute test.
Go to 2 minutes and then, yeah, you'd need all the miners on the planet to fail a 2 minute test.
(Edit: 2 minutes is one in ... 4.5x10^14 shares)

Pool: https://kano.is - low 0.5% fee PPLNS 3 Days - Most reliable Solo with ONLY 0.5% fee   Bitcointalk thread: Forum
Discord support invite at https://kano.is/ Majority developer of the ckpool code - k for kano
The ONLY active original developer of cgminer. Original master git: https://github.com/kanoi/cgminer
edonkey
Legendary
*
Offline Offline

Activity: 1150
Merit: 1004



View Profile
August 22, 2016, 04:37:47 AM
 #19665

I haven't look at it, and I can't stand a language that decides code execution based on invisible characters ... so I avoid python completely ... and no that's not a complaint about your code Smiley Just thought I'd mention that Smiley

+1 on Python's idiotic reliance on indentation for delineating code blocks. Makes it a pain to copy and insert code from other developers because some (the right thinking ones) use tabs and others (the wrong thinking ones) use spaces. Yeah, I come down on the tab side in that religious war Wink

What's wrong with using explicit characters, like braces, for code blocks for crap's sake?

But even with pain in the ass of having to entab and normalize text more often than I'd like, I find Python too damn useful for small scale needs. It's great for limited scripts and glue between other tools. More often than not I start writing what I thought would be a simple script in Bash, then I get over some number lines or need to do anything complex then wish I'd used Python.

That said I'm glad you're not using Python for this pool. I assume that it's all compiled C, and it shows.

I recently started running a proxy and it's really interesting what you see in the logs. Kano.is and the ck solo pool are both rock solid on the connection front. Literally zero disconnects.

F2Pool (which I have as a third backup) shows something like 40 disconnects a day. Some other pools that I won't mention seem similarly shaky.

Running a proxy has been very eye opening...

Was I helpful?   BTC: 3G1Ubof5u8K9iJkM8We2f3amYZgGVdvpHr
MexResorts
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile WWW
August 22, 2016, 02:56:33 PM
 #19666

Hi All! Noob here. I just bough some equipment and have had it running for just a couple of days. I have been able to find answers to most of my questions looking at this thread and on the website. I did read the payout section but it is unclear to me when the payout is sent after a block reaches the matured state?

I am using the method with no username just using my BTC wallet. Sorry for the super noob question!

Assuming you read this:  https://kano.is/index.php?k=payout

After a block has matured (reached 101 confirmations) it is queued for payout and sent out upon the next block the pool finds. Kano does sleep and sometimes it takes a bit longer if the blocks come fast and furious.



Thank you for the reply! I can tell this is a great comunity to start my mining adventure in! I have been online for a few days and although blocks I have been a part of says they are matured I have not seen a payout yet. When I check https://kano.is/address.php?a=18kbxaVRW7bUzvA8qxRCQgdfhUtUniC2EL the shares just keep going up. Will those go down when a payment has occured?

Sorry again for the noob questions! Just trying to get all in order until my equipment arrives!
firetreeactual
Legendary
*
Offline Offline

Activity: 952
Merit: 1003



View Profile
August 22, 2016, 03:25:49 PM
 #19667

Hi All! Noob here. I just bough some equipment and have had it running for just a couple of days. I have been able to find answers to most of my questions looking at this thread and on the website. I did read the payout section but it is unclear to me when the payout is sent after a block reaches the matured state?

I am using the method with no username just using my BTC wallet. Sorry for the super noob question!

Assuming you read this:  https://kano.is/index.php?k=payout

After a block has matured (reached 101 confirmations) it is queued for payout and sent out upon the next block the pool finds. Kano does sleep and sometimes it takes a bit longer if the blocks come fast and furious.



Thank you for the reply! I can tell this is a great comunity to start my mining adventure in! I have been online for a few days and although blocks I have been a part of says they are matured I have not seen a payout yet. When I check https://kano.is/address.php?a=18kbxaVRW7bUzvA8qxRCQgdfhUtUniC2EL the shares just keep going up. Will those go down when a payment has occured?

Sorry again for the noob questions! Just trying to get all in order until my equipment arrives!

You won't receive a payout of accumulated block rewards (confirmed) until the next block is found. The rewards get queued up, and release upon the next block find, so long as Kano's had a chance to review it, etc. A suggestion...if you are really into tracking if a given machine is producing, establish a user account with separate workers. And...I may be wrong, but I don't think the "number of shares" in the data line is what's waiting to disburse.

To infinity and beyond...on two 741s and one of only 3...nope, make that 4...full nodes in Hawaii...on <30A. (I have other gear on the Hoth ice planet)
firetreeactual
Legendary
*
Offline Offline

Activity: 952
Merit: 1003



View Profile
August 22, 2016, 04:25:11 PM
 #19668

We're fixin' to...



...mine some blocks!

To infinity and beyond...on two 741s and one of only 3...nope, make that 4...full nodes in Hawaii...on <30A. (I have other gear on the Hoth ice planet)
wmabern
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


Visualize whirledps


View Profile
August 22, 2016, 04:28:01 PM
 #19669

We're fixin' to...



...mine some blocks!

Dig DEEP! We need at least three more blocks for today!!!

GREEN STAR to the next BLOCK FINDER!!  Grin

BITMIXER.IO Gone Baby, Gone.. ;-)
Not any good sig campaigns out there that I want!
MexResorts
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile WWW
August 22, 2016, 04:33:29 PM
 #19670

Hi All! Noob here. I just bough some equipment and have had it running for just a couple of days. I have been able to find answers to most of my questions looking at this thread and on the website. I did read the payout section but it is unclear to me when the payout is sent after a block reaches the matured state?

I am using the method with no username just using my BTC wallet. Sorry for the super noob question!

Assuming you read this:  https://kano.is/index.php?k=payout

After a block has matured (reached 101 confirmations) it is queued for payout and sent out upon the next block the pool finds. Kano does sleep and sometimes it takes a bit longer if the blocks come fast and furious.



Thank you for the reply! I can tell this is a great comunity to start my mining adventure in! I have been online for a few days and although blocks I have been a part of says they are matured I have not seen a payout yet. When I check https://kano.is/address.php?a=18kbxaVRW7bUzvA8qxRCQgdfhUtUniC2EL the shares just keep going up. Will those go down when a payment has occured?

Sorry again for the noob questions! Just trying to get all in order until my equipment arrives!

You won't receive a payout of accumulated block rewards (confirmed) until the next block is found. The rewards get queued up, and release upon the next block find, so long as Kano's had a chance to review it, etc. A suggestion...if you are really into tracking if a given machine is producing, establish a user account with separate workers. And...I may be wrong, but I don't think the "number of shares" in the data line is what's waiting to disburse.

Thanks for the reply! I will have patience and see what happens. Will take your advice and make individual usernames for the miners. Just want to get the basics down first Smiley
sidroast
Full Member
***
Offline Offline

Activity: 125
Merit: 100


View Profile
August 22, 2016, 04:49:15 PM
 #19671

We're fixin' to...



...mine some blocks!

Dig DEEP! We need at least three more blocks for today!!!

GREEN STAR to the next BLOCK FINDER!!  Grin

Just pointed an additional sp20, s7 and s5 at kano  Grin
AriesIV10
Legendary
*
Offline Offline

Activity: 1260
Merit: 1006


Mine for a Bit


View Profile WWW
August 22, 2016, 04:53:56 PM
 #19672

We're fixin' to...



...mine some blocks!

Dig DEEP! We need at least three more blocks for today!!!

GREEN STAR to the next BLOCK FINDER!!  Grin

Just pointed an additional sp20, s7 and s5 at kano  Grin


The bottom is about to DROP out of this storm of Blocks!


BTC Address (Donations):  3LepZAju88ZRuNVD4cS6Xv5hKyKrjvirkB     Website:  www.MintMining.com
Email: Mining@MintMining.com      Power Supplies: https://bit.ly/2TtvdOR
citronick
Legendary
*
Offline Offline

Activity: 1834
Merit: 1080


---- winter*juvia -----


View Profile
August 22, 2016, 05:39:49 PM
 #19673

Patience is a Virtue.... the elusive block will come soon... oooom!


If I provided you good and useful info or just a smile to your day, consider sending me merit points to further validate this Bitcointalk account ~ useful for future account recovery...
clgrissom3
Legendary
*
Offline Offline

Activity: 1722
Merit: 1032


Carl, aka Sonny :)


View Profile
August 22, 2016, 05:57:15 PM
Last edit: August 22, 2016, 06:35:19 PM by clgrissom3
 #19674

Block by cytline!  That is Kano block #16 for him and our 2nd of the day!  Cheesy Cheesy
citronick
Legendary
*
Offline Offline

Activity: 1834
Merit: 1080


---- winter*juvia -----


View Profile
August 22, 2016, 05:59:56 PM
 #19675

Block by cytline!  That is Kano block #16 for and our 2nd of the day!  Cheesy Cheesy

common blocks.... we need a quick back to back blocks.... ooom!

If I provided you good and useful info or just a smile to your day, consider sending me merit points to further validate this Bitcointalk account ~ useful for future account recovery...
wmabern
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


Visualize whirledps


View Profile
August 22, 2016, 06:05:51 PM
 #19676

Block by cytline!  That is Kano block #16 for and our 2nd of the day!  Cheesy Cheesy

GREEN STAR to Cytline!!! Smiley


BITMIXER.IO Gone Baby, Gone.. ;-)
Not any good sig campaigns out there that I want!
VRobb
Hero Member
*****
Offline Offline

Activity: 1610
Merit: 538

I'm in BTC XTC


View Profile
August 22, 2016, 06:07:14 PM
 #19677

cytline bitches!!  Woo hoo!!  Cheesy

I don't believe in superstition because it's bad luck: 13thF1oor6CAwyzyxXPNnRvu3nhhYeqZdc
These aren't the Droids you're looking for: S5 & S7 (Sold), R4B2, R4B4 (RIP), 2x S9 obsolete, 2xS15-28, S17-56, S17-70
Pushing a whopping 1/5 PH!  Oh The SPEED!!!
wolfen
Hero Member
*****
Offline Offline

Activity: 770
Merit: 523


View Profile
August 22, 2016, 06:28:31 PM
Last edit: August 22, 2016, 07:00:25 PM by wolfen
 #19678

Looks like my keepkey discovered a bug. New beta firmware release available later today.
Guys over at keepkey are on the stick. Very pleased. They are the KANO of hardware wallets.
Yay! I'm 1btc richer that I thought.
Blockchain does not lie. Smiley

Blocks have been a bit stubborn. Let's roll!

Similar experience, one of their senior developers, Ken, actually called me to explain what was going on and ask if I wanted to be part of the beta firmware and app update Smiley
You get the firmware update yet? Not getting any response from support.
EDIT: Hey they just kicked it out.

EDIT#2
bitcoin still not visible on keepkey with new beta. Oops.

For those about to block we salute you! AC->BTC
clgrissom3
Legendary
*
Offline Offline

Activity: 1722
Merit: 1032


Carl, aka Sonny :)


View Profile
August 22, 2016, 06:44:20 PM
 #19679

Block by blockoperations!  That is his 2nd Kano Block and our 3rd of the day!  Cheesy Cheesy Cheesy
fusion0389
Sr. Member
****
Offline Offline

Activity: 324
Merit: 250


View Profile
August 22, 2016, 06:50:38 PM
 #19680

Looks like my keepkey discovered a bug. New beta firmware release available later today.
Guys over at keepkey are on the stick. Very pleased. They are the KANO of hardware wallets.
Yay! I'm 1btc richer that I thought.
Blockchain does not lie. Smiley

Blocks have been a bit stubborn. Let's roll!

Similar experience, one of their senior developers, Ken, actually called me to explain what was going on and ask if I wanted to be part of the beta firmware and app update Smiley
You get the firmware update yet? Not getting any response from support.
EDIT: Hey they just kicked it out.

Nice, feel free to PM me if you have any notable experiences with it. I'll update it when I get home from work.
Pages: « 1 ... 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 [984] 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 ... 2248 »
  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!