Bitcoin Forum
May 06, 2024, 10:09:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 12 13 14 15 16 17 18 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 ... 259 »
  Print  
Author Topic: ▂▃▅▆▇⫷[ 🆉🅿🅾🅾🅻.🅲🅰 ]⫸⫷[!10 FLUX PA's!]⫸⫷[ the miners multipool ]⫸ ▇▆▅▃▂  (Read 279265 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.
Storx
Full Member
***
Offline Offline

Activity: 322
Merit: 233


View Profile
July 27, 2017, 03:21:08 AM
 #1221

I think I figured it out after looking at the Yiimp code.  The relevant function that I believe is causing the issues is as follows:

In web\yaamp\core\backend\markets.php on line 203

Code:
function AverageIncrement($value1, $value2)
{
$percent = 80;
$value = ($value1*(100-$percent) + $value2*$percent) / 100;

return $value;
}

This function is used for pretty much every price lookup from the markets.  The purpose of this function is to create a weighted value based upon 20% of value1 and 80% of value2.  The reason for doing it is to create a trailing average for price moves.  As an example in the price look up for any of the exchanges.

web\yaamp\core\exchange\bittrex.php on line 61-63

Code:
	$price2 = ($m->Bid + $m->Ask)/2;
$market->price2 = AverageIncrement($market->price2, $price2);
$market->price = AverageIncrement($market->price, $m->Bid);


The purpose of this code is to first get the average of the Bid and Ask and put it in price2.
Next it sets the price2 value to the weighted value of the previous price2 and the current price2.  This would be a 20% weight of the old price + 80% value of the new price.
Finally it sets the price value to the weighted value of the previous price and the current bid.  This would be a 20% weight of the old bid + 80% value of the new bid.

On paper this seems reasonable because if the price fluctuates by a significant margin it will trail that value and essentially smooth the movement out.  

This is significant because if you look at the AverageIncrement function and consider that if the previous price being passed in value1 does not exist then the function returns 80% of the current price2 or Bid.  So I think what might be happening is somehow the object is falling out of scope or some other issue that is causing that value1 to get a 0 amount and therefore the values coming out are 80% of the value they should be.

As a workaround until it can be determined if the values are being passed incorrectly or falling out of scope a line to check if value1 is 0 and if it is return the value2 should work around the issue.  I'm going to likely try and setup a Yiimp instance on a test VM and see if I can get values out of it to determine for sure if this is the problem.

I'll let you know what I find.  Crackfoo if you want to perhaps add some debug logging like the following it may be quicker for you to see:

Code:
function AverageIncrement($value1, $value2)
{
$percent = 80;
$value = ($value1*(100-$percent) + $value2*$percent) / 100;

        debuglog("AverageIncrement: $value1, $value2");

return $value;
}

Or report it to Tpruvot and see if he can look at it.  I'm pretty sure this is what is causing the issues.





Good work man, honestly i hope we can figure this stuff out and get back to normal payouts, i honestly want to stay on on this pool, because i am not a full time miner and need the mining operation to convert for me automatic when im busy working my normal 9to5 job... just hope crackfoo can get to the bottom of this....

- GPUs Mining : 128 (Updated 3/7/18) // CPUs Mining : 19 (Updated 2/23/18)
1714990191
Hero Member
*
Offline Offline

Posts: 1714990191

View Profile Personal Message (Offline)

Ignore
1714990191
Reply with quote  #2

1714990191
Report to moderator
1714990191
Hero Member
*
Offline Offline

Posts: 1714990191

View Profile Personal Message (Offline)

Ignore
1714990191
Reply with quote  #2

1714990191
Report to moderator
1714990191
Hero Member
*
Offline Offline

Posts: 1714990191

View Profile Personal Message (Offline)

Ignore
1714990191
Reply with quote  #2

1714990191
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.
jmayniac
Newbie
*
Offline Offline

Activity: 77
Merit: 0


View Profile
July 27, 2017, 02:13:32 PM
Last edit: July 27, 2017, 03:27:34 PM by jmayniac
 #1222

I think I figured it out after looking at the Yiimp code.  The relevant function that I believe is causing the issues is as follows:

In web\yaamp\core\backend\markets.php on line 203

Code:
function AverageIncrement($value1, $value2)
{
$percent = 80;
$value = ($value1*(100-$percent) + $value2*$percent) / 100;

return $value;
}

This function is used for pretty much every price lookup from the markets.  The purpose of this function is to create a weighted value based upon 20% of value1 and 80% of value2.  The reason for doing it is to create a trailing average for price moves.  As an example in the price look up for any of the exchanges.

web\yaamp\core\exchange\bittrex.php on line 61-63

Code:
	$price2 = ($m->Bid + $m->Ask)/2;
$market->price2 = AverageIncrement($market->price2, $price2);
$market->price = AverageIncrement($market->price, $m->Bid);


The purpose of this code is to first get the average of the Bid and Ask and put it in price2.
Next it sets the price2 value to the weighted value of the previous price2 and the current price2.  This would be a 20% weight of the old price + 80% value of the new price.
Finally it sets the price value to the weighted value of the previous price and the current bid.  This would be a 20% weight of the old bid + 80% value of the new bid.

On paper this seems reasonable because if the price fluctuates by a significant margin it will trail that value and essentially smooth the movement out. 

This is significant because if you look at the AverageIncrement function and consider that if the previous price being passed in value1 does not exist then the function returns 80% of the current price2 or Bid.  So I think what might be happening is somehow the object is falling out of scope or some other issue that is causing that value1 to get a 0 amount and therefore the values coming out are 80% of the value they should be.

As a workaround until it can be determined if the values are being passed incorrectly or falling out of scope a line to check if value1 is 0 and if it is return the value2 should work around the issue.  I'm going to likely try and setup a Yiimp instance on a test VM and see if I can get values out of it to determine for sure if this is the problem.

I'll let you know what I find.  Crackfoo if you want to perhaps add some debug logging like the following it may be quicker for you to see:

Code:
function AverageIncrement($value1, $value2)
{
$percent = 80;
$value = ($value1*(100-$percent) + $value2*$percent) / 100;

        debuglog("AverageIncrement: $value1, $value2");

return $value;
}

Or report it to Tpruvot and see if he can look at it.  I'm pretty sure this is what is causing the issues.


I support this effort 100%.  If you need anything from me, let me know.

Jaerin,

Why don't you file an issue here: https://github.com/tpruvot/yiimp/issues

If that goes well, you can then submit a pull request.

Crackfoo,

Can you please look into this?  I would really like to know your thoughts.
Jaerin
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
July 27, 2017, 04:36:54 PM
 #1223


I support this effort 100%.  If you need anything from me, let me know.

Jaerin,

Why don't you file an issue here: https://github.com/tpruvot/yiimp/issues

If that goes well, you can then submit a pull request.

Crackfoo,

Can you please look into this?  I would really like to know your thoughts.

I don't really want to report an issue until I have the full evidence to support that it actually is the issue.  Not to mention Tpruvot doesn't really support the exchange portion of Yiimp so he may not care.

I will once I can get it installed and verify the pricing is as I suspect it may be.  The code has logic that makes sense as to why the discrepancy is there, but I don't want to jump the gun.
crackfoo (OP)
Legendary
*
Offline Offline

Activity: 3458
Merit: 1126



View Profile WWW
July 27, 2017, 05:10:24 PM
 #1224

that looks kinda promising. I don't really understand how it comes into play but I'll see if we can.

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
jmayniac
Newbie
*
Offline Offline

Activity: 77
Merit: 0


View Profile
July 27, 2017, 05:37:15 PM
 #1225

I don't really want to report an issue until I have the full evidence to support that it actually is the issue.  Not to mention Tpruvot doesn't really support the exchange portion of Yiimp so he may not care.

I will once I can get it installed and verify the pricing is as I suspect it may be.  The code has logic that makes sense as to why the discrepancy is there, but I don't want to jump the gun.

I guess I was more suggesting opening an issue to start a dialog with Tpruvot so he can take a look at it as well, since he is very familiar with it and why it was done the way it was.  Maybe he has some insight that was overlooked.  No sense in doing an entire install and start poking through it if he can tell you right away whats going on.  If he doesn't support, that's fine, but he may have still have some input on it.
Tssar
Member
**
Offline Offline

Activity: 120
Merit: 10


View Profile
July 27, 2017, 05:50:00 PM
 #1226

Hi

Can we mine LTC at Zpool?

Thanks
crackfoo (OP)
Legendary
*
Offline Offline

Activity: 3458
Merit: 1126



View Profile WWW
July 27, 2017, 05:52:43 PM
 #1227

Hi

Can we mine LTC at Zpool?

Thanks

not yet. I need to find someone to update the stratum code to support segwit first...

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
cryptolelefla
Member
**
Offline Offline

Activity: 121
Merit: 10


View Profile
July 27, 2017, 09:05:47 PM
 #1228

it's possible to assign worker name in this poll?
Lercker
Sr. Member
****
Offline Offline

Activity: 358
Merit: 250


View Profile
July 27, 2017, 09:15:54 PM
 #1229

it's possible to assign worker name in this poll?
In the password field... -p Rig1,c=BTC....
olek82
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 27, 2017, 11:42:50 PM
 #1230

hi again,

im mining on zpool for like 30h. there is still no transaction to my wallet.  when can i expect my first payout? is there something wrong Roll Eyes? thx
RandomQ
Hero Member
*****
Offline Offline

Activity: 826
Merit: 500



View Profile
July 28, 2017, 12:21:36 AM
 #1231

hi again,

im mining on zpool for like 30h. there is still no transaction to my wallet.  when can i expect my first payout? is there something wrong Roll Eyes? thx

Current daily limit is like .015 BTC, all other payouts are done on sunday.

also there is a confirmed and unconfirmed balance.

olek82
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 28, 2017, 12:28:59 AM
 #1232

Note: Minimum payout for this wallet is 0.0001 UNO . ive got alot more so whats the deal???
JaredKaragen
Legendary
*
Offline Offline

Activity: 1848
Merit: 1165


My AR-15 ID's itself as a toaster. Want breakfast?


View Profile WWW
July 28, 2017, 12:39:10 AM
 #1233

Note: Minimum payout for this wallet is 0.0001 UNO . ive got alot more so whats the deal???
Minimum payout on sundays only.......

Link to my batch and script resources here.  

DO NOT TRUST YOBIT  -JK

Donations: 1Q8HjG8wMa3hgmDFbFHC9cADPLpm1xKHQM
SFR10
Legendary
*
Offline Offline

Activity: 2996
Merit: 3421


Crypto Swap Exchange


View Profile WWW
July 28, 2017, 06:14:25 AM
Last edit: July 28, 2017, 11:44:50 AM by SFR10
 #1234

I'm having issues regarding payouts in Decred, anyone having similar issues?



My last two payouts, don't have a transaction link, even though it says it has paid me (since it has deducted the said amounts from my balance).
Code:
http://www.zpool.ca/?address=DsV2oBk16Q4ctgTn4Rdbcw4Tu8fsHxRzQTo
Link to explorer: https://mainnet.decred.org/address/DsV2oBk16Q4ctgTn4Rdbcw4Tu8fsHxRzQTo

I've only received 0.42892362 DCR (according to my wallet and explorer) but in zpool website, in Total Paid *** category is being listed as 0.50499777 DCR.

In case this has been done due to some recent changes, I would appreciate if you can check this (crackfoo).

Update:
Thank you for fixing the issue, since those credits are now back in my balance, I appreciate it Smiley

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
olek82
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 28, 2017, 07:04:02 AM
 #1235

Note: Minimum payout for this wallet is 0.0001 UNO . ive got alot more so whats the deal???
Minimum payout on sundays only.......

seems im to dumb to get it. when can i expect to get 0.07 uno payed to my wallet? Minimum is 0.0001 UNO and daily limit is 0.15 BTC so where the fuck is the transaction??? thanks
pindis
Full Member
***
Offline Offline

Activity: 187
Merit: 100


View Profile
July 28, 2017, 08:08:58 AM
 #1236

I think we're having issues Crackfoo https://i.imgur.com/07byWJp.png  Cheesy
crackfoo (OP)
Legendary
*
Offline Offline

Activity: 3458
Merit: 1126



View Profile WWW
July 28, 2017, 12:17:40 PM
 #1237

I think we're having issues Crackfoo https://i.imgur.com/07byWJp.png  Cheesy

I guess blakecoin is involved...1000% increase from where...

edit: pool is on a fork, turn it off.

it wasn't a fork, c-cex added a different coin with the same BLC symbol so the prices were fucked up for a while but are now balances are adjusted to what you SHOULD have been earning. I s'pose I can expect the trolls to pop up and announce I've stolen all their BTC again.

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
crackfoo (OP)
Legendary
*
Offline Offline

Activity: 3458
Merit: 1126



View Profile WWW
July 28, 2017, 12:21:12 PM
 #1238

I think we're having issues Crackfoo https://i.imgur.com/07byWJp.png  Cheesy

I guess blakecoin is involved...1000% increase from where...

edit: pool is on a fork, turn it off.

it wasn't a fork, c-cex added a different coin with the same BLC symbol so the prices were fucked up for a while but are now balances are adjusted to what you SHOULD have been earning. I s'pose I can expect the trolls to pop up and announce I've stolen all their BTC again.


yup... just checked the support tickets and a bunch of miners crying I stole their BTC and WANT IT PAID.

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
agapes
Newbie
*
Offline Offline

Activity: 41
Merit: 0


View Profile
July 28, 2017, 03:51:30 PM
 #1239

what happned , last night before i went to bed i had a lot of total unpaid bitcin but morning when i woke up all gone???!!!!!
crackfoo (OP)
Legendary
*
Offline Offline

Activity: 3458
Merit: 1126



View Profile WWW
July 28, 2017, 05:06:30 PM
 #1240

I'm having issues regarding payouts in Decred, anyone having similar issues?



My last two payouts, don't have a transaction link, even though it says it has paid me (since it has deducted the said amounts from my balance).
Code:
http://www.zpool.ca/?address=DsV2oBk16Q4ctgTn4Rdbcw4Tu8fsHxRzQTo
Link to explorer: https://mainnet.decred.org/address/DsV2oBk16Q4ctgTn4Rdbcw4Tu8fsHxRzQTo

I've only received 0.42892362 DCR (according to my wallet and explorer) but in zpool website, in Total Paid *** category is being listed as 0.50499777 DCR.

In case this has been done due to some recent changes, I would appreciate if you can check this (crackfoo).

Update:
Thank you for fixing the issue, since those credits are now back in my balance, I appreciate it Smiley

no prob. I forgot to "unlock" the wallet after restarting it so the tx's failed to get created.

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
Pages: « 1 ... 12 13 14 15 16 17 18 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 ... 259 »
  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!