Author Topic: Coyote Pool 2.0 - One Day Rounds Proportional Payout [CLOSED]  (Read 206869 times)

0 Members and 1 Guest are viewing this topic.

Offline Biontic

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #668 on: November 28, 2013, 11:01:12 pm »
Cheers for the heads-up
:)


Sent from my iPhone using Tapatalk

Offline bytemaster

Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #667 on: November 28, 2013, 10:59:15 pm »

When do we get nex payout?

Next payout will be Sunday night as I do not have access to the server right now because I forgot to copy private key to my laptop.


Sent from my iPhone using Tapatalk
For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

Offline Polke

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #666 on: November 28, 2013, 09:34:53 pm »
@bytemaster

No payout from yesterday, Po2jNHNvqv2a2kdyZPWic1XveoCHKczVMQ.

I included today 14 new VPS's, but not sure if I'll keep'em on this pool if paymnet is uncertain.

Payment is certain my friend.    Everyone on here has been getting one payout per day.   

I thank you, the payment has been received.

For the new miners, be patient, you will get your payment, give bytemaster some space.
Donation: Po2jNHNvqv2a2kdyZPWic1XveoCHKczVMQ

Offline Knoyken

  • Newbie
  • *
  • Posts: 11
    • View Profile
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #665 on: November 28, 2013, 08:44:14 pm »
When do we get nex payout?

Offline yago

  • Full Member
  • ***
  • Posts: 188
    • View Profile
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #664 on: November 28, 2013, 07:01:54 pm »
coyote-stats.sh:
http://pastebin.com/YjkLkXQ6

Example output:
Coyote Pool status: HTTP:80 up, Mining: 4444:up, Pool Shares: 733174, Pool Balance: 81.0589, Mature Balance: 54.0398, Addresses with pending payouts: 232

Code: [Select]
#!/bin/bash
#
# This script harvest some data from Coyote Pool PTS pool
# Autor: Yago
# License:  WTFPL http://www.wtfpl.net/txt/copying/

MINING_PORT=4444
POOL_IP=162.243.45.158
HTTP_TIMEOUT=5 # seconds
MINING_TIMEOUT=5 # seconds
TMP=/tmp/coyote-stats

mkdir -p $TMP

harvest() {
# harvest some info
SOME_INFO=`perl -pe 's/<br\/>\n/,/g' $TMP/index.html  | perl -pe 's/,</\n/g' | grep Shares | perl -pe 's/,/, /g'`

# harvest number of addresses listed
NUMBER_ADDRESSES=`grep '<td>' $TMP/index.html | wc -l`

}

checkminingport() {
nc -z -w$MINING_TIMEOUT $POOL_IP $MINING_PORT
if [ $? -eq 0 ]; then
MINING_PORT_STATUS="$MINING_PORT:up"
else
MINING_PORT_STATUS="$MINING_PORT:DOWN :("
fi
}


# check http
wget --quiet --tries=1 --timeout=$HTTP_TIMEOUT http://$POOL_IP -O $TMP/index.html
if [ $? -eq 0 ]; then
harvest
checkminingport
echo "Coyote Pool status: HTTP:80 up, Mining: $MINING_PORT_STATUS, $SOME_INFO, Addresses with pending payouts: $NUMBER_ADDRESSES"
else
checkminingport
echo "Coyote Pool status: HTTP:80 down :/, Mining: $MINING_PORT_STATUS, Shares, Balance and addresses with pending payouts: data source down."
fi

Edit: added "--tries=1 " to fix 20 times retry bug
« Last Edit: December 01, 2013, 09:30:43 pm by yago »
http://bitsharestalk.org/donate.html  <---- Donate to the BitShares Forum ----> PforumPLfVQXTi4QpQqKwoChXHkoHcxGuA

Offline yvg1900

  • Full Member
  • ***
  • Posts: 198
    • View Profile
  • BitShares: yvg1900
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #663 on: November 28, 2013, 05:48:44 pm »
Any chance to get miner-side API?

yvg1900
Follow @yvg1900 on Twitter for yam miner updates and support

Offline bytemaster

Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #662 on: November 28, 2013, 05:45:52 pm »
Means only Coyote miner can be used, 3rd party miners not allowed?

yvg1900

Correct.  It was just what was easiest to implement in 24 hours.   We have someone working on a new pool that will work with other miners.
For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

Offline yvg1900

  • Full Member
  • ***
  • Posts: 198
    • View Profile
  • BitShares: yvg1900
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #661 on: November 28, 2013, 04:22:32 pm »
Means only Coyote miner can be used, 3rd party miners not allowed?

yvg1900
Follow @yvg1900 on Twitter for yam miner updates and support

Offline bytemaster

Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #660 on: November 28, 2013, 03:46:17 pm »
Technical question.

Is this pool getwork based, XPT or other protocol?

yvg1900

This pool uses a binary protocol and encrypted connection.  It is testing some BTS code in the process.   
For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

Offline yvg1900

  • Full Member
  • ***
  • Posts: 198
    • View Profile
  • BitShares: yvg1900
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #659 on: November 28, 2013, 01:34:17 pm »
Technical question.

Is this pool getwork based, XPT or other protocol?

yvg1900
Follow @yvg1900 on Twitter for yam miner updates and support

Offline dannotestein

  • Hero Member
  • *****
  • Posts: 760
    • View Profile
    • BlockTrades International
  • BitShares: btsnow
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #658 on: November 27, 2013, 07:54:06 pm »
found two blocks so far, so I guess the pool will probably still supply consistent payouts on a daily basis.
http://blocktrades.us Fast/Safe/High-Liquidity Crypto Coin Converter

Offline bytemaster

Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #657 on: November 27, 2013, 12:14:09 pm »

ok so whole day mining wasted ?

No when a block is found you will get a cut.


Sent from my iPhone using Tapatalk
For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

Offline Biontic

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #656 on: November 27, 2013, 11:23:19 am »
If you want regular payouts I would switch pools. 

Thanks for the candid heads-up Master, greatly appreciate all your sustained efforts on this, most fascinating development....

Anyone else care to make a solid recommendation for an alternative pool?

Offline Brekyrself

  • Hero Member
  • *****
  • Posts: 514
    • View Profile
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #655 on: November 27, 2013, 07:51:44 am »
Bytemaster we need a gpu miner to jump start this pool back to life :)

Offline svd

  • Jr. Member
  • **
  • Posts: 46
    • View Profile
Re: Coyote Pool 2.0 - One Day Rounds Proportional Payout
« Reply #654 on: November 27, 2013, 07:49:16 am »
ok so whole day mining wasted ?