Pages:
Author

Topic: [ANN][The Original Multipool - Scrypt/SHA256/Scrypt-N/X11] multipool.us - page 98. (Read 424232 times)

newbie
Activity: 38
Merit: 0
ah back to mp and getting 74 diff at time of post mining btc... with only 1gh/s Sad

2nd thought its working even at 64 diff i can see my hashes  Smiley and submitting shares
think we are good Tongue

3rd thought its taking wayyyy to long to submit shares... ~ 5 mins per share = not good @ 47 diff @ 1 gh/s


It shouldn't *really* matter all that much..  But I'll work on getting custom difficulty implemented.

Same issue here, I'm going to have to take my block erupter farm off of multiport for the time being.  diffs of ~50-100+ are killing those little 333MH/s guys.  Huge reject and HW error rate.
full member
Activity: 128
Merit: 100
...The Shadow knows.
It looks like a bug in stratum-proxy.  It can't stay connected to p2pool for some reason.

It's been reported here 3 months ago:  https://github.com/slush0/stratum-mining-proxy/issues/29

On another note, I am fucking done with trying to make the sortable table on the stats page work.  I have spent about 10 hours trying to get this piece of shit JQuery plugin to work and it's not happening.  If someone wants hero status, grab the table HTML off the stats page and send me working JS.

Would it be possible to use the per-coin tables?
((those found at like: https://www.multipool.us/my_stats.php?curr=btc))

This table:
Quote
Your Detailed Stats - BTC
10 Minute Hash Rate   7762 Mh/s
Valid Round Shares   1104572
Invalid Round Shares   157.5770492553711
Your Efficiency   99.99%
Est. Coins/Block   0.0019
Est. Coins/Day   0.0076
Worker Uptime (last 24h)   10:28:48 (43.67%)
Lifetime Total BTC Earned   0.000974443
Total BTC Donated   0.0000359005
Current N (Round Time)   74 Hours 26 Minutes

And just setup a table that displays them all?

It seems that the table listed above has many of the same variables listed in the 'new' stats page.
sr. member
Activity: 280
Merit: 250
Helperizer
It looks like a bug in stratum-proxy.  It can't stay connected to p2pool for some reason.

It's been reported here 3 months ago:  https://github.com/slush0/stratum-mining-proxy/issues/29

Thanks, flound!  Looks like no solution yet, unfortunately.  Wish I had come across that in my searches, but I definitely appreciate the hand.
hero member
Activity: 938
Merit: 1000
www.multipool.us
It looks like a bug in stratum-proxy.  It can't stay connected to p2pool for some reason.

It's been reported here 3 months ago:  https://github.com/slush0/stratum-mining-proxy/issues/29

On another note, I am fucking done with trying to make the sortable table on the stats page work.  I have spent about 10 hours trying to get this piece of shit JQuery plugin to work and it's not happening.  If someone wants hero status, grab the table HTML off the stats page and send me working JS.
sr. member
Activity: 280
Merit: 250
Helperizer
I'm at 43 now on the BFL little single..  Pretty close to what I had (32)

BTW, have you gotten any feedback from others running Block Erupter BLADES?  The multipool works fine for me for all SHA-256 coins EXCEPT BTC, now that p2pool is in place (love the idea though!).  I've tried a few settings on my mining_proxy.py, but nothing seems to help (-nm, -rt, etc).  I get tons of "errors on Deferred" or some such (am at work so don't have logs handy).  Any ideas?

Anyone else?

Sounds like python errors..  Deferred is a twistd thing.  But our p2pool BTC port supports both Getwork and Stratum, so you could conceivably point your block erupters directly at it without going thru the proxy.  (However this wouldn't work on the multiport)

Which is why I didn't want to go straight to p2pool on it - the multiport is the cool thing that I'm after to take advantage of the optimized mining.  Not sure why I would be getting python errors when the multiport works fine with it for all coins except BTC, and I've had it working for a variety of other pools as well.  Argh.  I know the scrypt multipool has getwork - any chance of one for the SHA-256 multi?  (he asked hoping but remembering you saying something about that not being workable for some reason...)

If you can post the errors you're getting here, I can try to help you debug.  There should not be any reason that stratum proxy won't work with p2pool.

Thanks flound, here's the output that comes out no matter which mining_proxy.py switches I use, but only when the multipool is on BTC, below.  I used "python mining_proxy.py -i /tmp/prox.pid -o stratum.mining.eligius.st -p 3334" to invoke mining_proxy.py, BTW.

Code:
2013-11-06 21:02:00,537 INFO stats stats.print_stats # 1 peers connected, state changed 1 times
2013-11-06 21:02:00,537 INFO proxy mining_proxy.on_connect # Connected to Stratum pool at pool1.us.multipool.us:8888
2013-11-06 21:02:00,537 INFO proxy mining_proxy.on_connect # Subscribing for mining jobs
2013-11-06 21:02:00,645 INFO proxy client_service.handle_event # Setting new difficulty: 85.4899012689
2013-11-06 21:02:00,753 INFO proxy mining_proxy.on_disconnect # Disconnected from Stratum pool at pool1.us.multipool.us:8888
2013-11-06 21:02:00,753 INFO stats stats.print_stats # 0 peers connected, state changed 1 times
Unhandled error in Deferred:
Unhandled Error
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/web/server.py", line 189, in process
    self.render(resrc)
  File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/web/server.py", line 238, in render
    body = resrc.render(self)
  File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/web/resource.py", line 250, in render
    return m(request)
  File "/home/tye/stratum/mining_libs/getwork_listener.py", line 163, in render_POST
    d = defer.maybeDeferred(self.workers.authorize, worker_name, password)
--- ---
  File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 137, in maybeDeferred
    result = f(*args, **kw)
  File "/home/tye/stratum/mining_libs/worker_registry.py", line 37, in authorize
    d = self.f.rpc('mining.authorize', [worker_name, password])
  File "/usr/local/lib/python2.7/dist-packages/stratum-0.2.12-py2.7.egg/stratum/socket_transport.py", line 93, in rpc
    raise custom_exceptions.TransportException("Not connected")
stratum.custom_exceptions.TransportException: Not connected
hero member
Activity: 938
Merit: 1000
www.multipool.us
I'm at 43 now on the BFL little single..  Pretty close to what I had (32)

BTW, have you gotten any feedback from others running Block Erupter BLADES?  The multipool works fine for me for all SHA-256 coins EXCEPT BTC, now that p2pool is in place (love the idea though!).  I've tried a few settings on my mining_proxy.py, but nothing seems to help (-nm, -rt, etc).  I get tons of "errors on Deferred" or some such (am at work so don't have logs handy).  Any ideas?

Anyone else?

Sounds like python errors..  Deferred is a twistd thing.  But our p2pool BTC port supports both Getwork and Stratum, so you could conceivably point your block erupters directly at it without going thru the proxy.  (However this wouldn't work on the multiport)

Which is why I didn't want to go straight to p2pool on it - the multiport is the cool thing that I'm after to take advantage of the optimized mining.  Not sure why I would be getting python errors when the multiport works fine with it for all coins except BTC, and I've had it working for a variety of other pools as well.  Argh.  I know the scrypt multipool has getwork - any chance of one for the SHA-256 multi?  (he asked hoping but remembering you saying something about that not being workable for some reason...)

If you can post the errors you're getting here, I can try to help you debug.  There should not be any reason that stratum proxy won't work with p2pool.
sr. member
Activity: 280
Merit: 250
Helperizer
I'm at 43 now on the BFL little single..  Pretty close to what I had (32)

BTW, have you gotten any feedback from others running Block Erupter BLADES?  The multipool works fine for me for all SHA-256 coins EXCEPT BTC, now that p2pool is in place (love the idea though!).  I've tried a few settings on my mining_proxy.py, but nothing seems to help (-nm, -rt, etc).  I get tons of "errors on Deferred" or some such (am at work so don't have logs handy).  Any ideas?

Anyone else?

Sounds like python errors..  Deferred is a twistd thing.  But our p2pool BTC port supports both Getwork and Stratum, so you could conceivably point your block erupters directly at it without going thru the proxy.  (However this wouldn't work on the multiport)

Which is why I didn't want to go straight to p2pool on it - the multiport is the cool thing that I'm after to take advantage of the optimized mining.  Not sure why I would be getting python errors when the multiport works fine with it for all coins except BTC, and I've had it working for a variety of other pools as well.  Argh.  I know the scrypt multipool has getwork - any chance of one for the SHA-256 multi?  (he asked hoping but remembering you saying something about that not being workable for some reason...)
sr. member
Activity: 453
Merit: 250
dfgfdgfdg
...we are now paying out transaction fees...
That was my next question. I read that as BTC difficulty increases that mining income will essentially become almost all transaction fees. Does that seem reasonable? I'm hoping sha-256 mining stays profitable long enough to recoup the investment in ASICs. Which begs the question is it really a profit until you've recouped your capital investment?

Block Eruptors: Mine haven't worked on the p2p BTC so I just point them at PPC. Please let us know when you figure out how to get the diff low enough to try again.
hero member
Activity: 938
Merit: 1000
www.multipool.us
I'm at 43 now on the BFL little single..  Pretty close to what I had (32)

BTW, have you gotten any feedback from others running Block Erupter BLADES?  The multipool works fine for me for all SHA-256 coins EXCEPT BTC, now that p2pool is in place (love the idea though!).  I've tried a few settings on my mining_proxy.py, but nothing seems to help (-nm, -rt, etc).  I get tons of "errors on Deferred" or some such (am at work so don't have logs handy).  Any ideas?

Anyone else?

Sounds like python errors..  Deferred is a twistd thing.  But our p2pool BTC port supports both Getwork and Stratum, so you could conceivably point your block erupters directly at it without going thru the proxy.  (However this wouldn't work on the multiport)
hero member
Activity: 938
Merit: 1000
www.multipool.us
Back to scrypt for a moment, what do people think of TagCoin?
put all these up for mining, they give us interest on all deposits including btc interest Tongue
https://mcxnow.com
O and thanks for fixing NVC for me   Grin
I'm pretty sure we already mine all the mcxnow scrypt coins.  DVC merged mining is coming soon.
Missing quite a few:
PrimeCoin - XPM
CopperLark -  CLR
Solidcoin - SBC
Devcoin - DVC
also glade you plain on moving btc off the MP rotation Tongue Also also , might as well add all the merged mining coins to the mix not just DVC,NMC anyone? And the other dozen or so merged mining coins i cant think of.
Keep it up work .. Smiley might just add more gh/s this way Smiley
SolidCoin is not a real coin. It's a RealSolid creation and I believe the only place it exists is on mcxNOW. I don't even think it can be mined.
XPM can only be CPU mined now. I have 9 CPUs mining XPM 24x7 and I make just over 2 XPM per day. Maybe if and when there's a bona fide GPU miner for XPM.
CopperLark is a flakey SHA-3 coin that can only be mined with a special edition of Reaper. Who needs it.
DevCoin will be merged mined, as flound has said several times.

Let's focus on coins that can actually make a miner money. If I want mcxNOW BTC interest I sell my coins at BTC-e or Cryptsy and transfer them. No biggie.

And I agree, flound's doing a great job. His next problem might be dealing with the heavy sha-256 traffic to come  Grin

None of these coins are scrypt.  SC, XPM, and CL are all different algorithms.  I believe SC and CL can only be mined with Reaper.

I might make a scrypt-jane multiport in the future, if there is demand for it.  But right now, the coins that use it don't seem incredibly profitable.

The p2pool node is running on a fairly beefy VPS, so I don't anticipate having capacity issues anytime soon.
hero member
Activity: 938
Merit: 1000
www.multipool.us
I was thinking about the BTC payouts earlier and I'm going to change the payout a little to be more fair to the newer miners (I don't want to lose hash because newer users aren't getting close to the payout they expect.)

Rather than keeping a month's worth of shares until 30 BTC are paid out, I'm going to drop 10 days worth of shares after every 7.5 BTC.

I think this is fairer to both old and new users.  It sucks, but the original miners (myself included) on the BTC port knew the risks of mining BTC with such a low hashrate.  We can't punish new users and force them to absorb our bad luck.
hero member
Activity: 938
Merit: 1000
www.multipool.us
Help page has been updated with P2Pool info.  Please read!

https://www.multipool.us/help.php
The Help page looks complete.

"Q: Do we pay extra fees to mine via P2Pool?
 A: Multipool currently donates 0.5% of mining profits to the P2Pool authors."

I interpret this to mean miners pay 1.5% + 0.5% = 2.0% when mining BTC. Is that right?


Yes that's correct.  However, since we are now paying out tx fees, it should work out close to or better than even for miners.
sr. member
Activity: 280
Merit: 250
Helperizer
I'm at 43 now on the BFL little single..  Pretty close to what I had (32)

BTW, have you gotten any feedback from others running Block Erupter BLADES?  The multipool works fine for me for all SHA-256 coins EXCEPT BTC, now that p2pool is in place (love the idea though!).  I've tried a few settings on my mining_proxy.py, but nothing seems to help (-nm, -rt, etc).  I get tons of "errors on Deferred" or some such (am at work so don't have logs handy).  Any ideas?

Anyone else?
sr. member
Activity: 453
Merit: 250
dfgfdgfdg
I just checked BTC stats and see that 2 TerraHash miners have already moved in. I'm shrinking by the minute  Cry

https://www.multipool.us/stats.php?curr=btc
sr. member
Activity: 453
Merit: 250
dfgfdgfdg
Back to scrypt for a moment, what do people think of TagCoin?
put all these up for mining, they give us interest on all deposits including btc interest Tongue
https://mcxnow.com
O and thanks for fixing NVC for me   Grin
I'm pretty sure we already mine all the mcxnow scrypt coins.  DVC merged mining is coming soon.
Missing quite a few:
PrimeCoin - XPM
CopperLark -  CLR
Solidcoin - SBC
Devcoin - DVC
also glade you plain on moving btc off the MP rotation Tongue Also also , might as well add all the merged mining coins to the mix not just DVC,NMC anyone? And the other dozen or so merged mining coins i cant think of.
Keep it up work .. Smiley might just add more gh/s this way Smiley
SolidCoin is not a real coin. It's a RealSolid creation and I believe the only place it exists is on mcxNOW. I don't even think it can be mined.
XPM can only be CPU mined now. I have 9 CPUs mining XPM 24x7 and I make just over 2 XPM per day. Maybe if and when there's a bona fide GPU miner for XPM.
CopperLark is a flakey SHA-3 coin that can only be mined with a special edition of Reaper. Who needs it.
DevCoin will be merged mined, as flound has said several times.

Let's focus on coins that can actually make a miner money. If I want mcxNOW BTC interest I sell my coins at BTC-e or Cryptsy and transfer them. No biggie.

And I agree, flound's doing a great job. His next problem might be dealing with the heavy sha-256 traffic to come  Grin
sr. member
Activity: 453
Merit: 250
dfgfdgfdg
Help page has been updated with P2Pool info.  Please read!

https://www.multipool.us/help.php
I think you answered this somewhere in the last 185 pages but it might be nice to add to Help since I can't remember the answer. Your Profitability values differ from CoinWarz and CoinChoose because I think you account for stales and rejects. Is that right?
hero member
Activity: 821
Merit: 503
Back to scrypt for a moment, what do people think of TagCoin?

put all these up for mining, they give us interest on all deposits including btc interest Tongue

https://mcxnow.com

O and thanks for fixing NVC for me   Grin

I'm pretty sure we already mine all the mcxnow scrypt coins.  DVC merged mining is coming soon.


Missing quite a few:

PrimeCoin - XPM

CopperLark -  CLR

Solidcoin - SBC

Devcoin - DVC

also glade you plan on moving btc off the MP rotation Tongue Also also , might as well add all the merged mining coins to the mix not just DVC,NMC anyone? And the other dozen or so merged mining coins i cant think of.


Keep up the good work .. Smiley might just add more gh/s this way Smiley



sr. member
Activity: 453
Merit: 250
dfgfdgfdg
Help page has been updated with P2Pool info.  Please read!

https://www.multipool.us/help.php
The Help page looks complete.

"Q: Do we pay extra fees to mine via P2Pool?
 A: Multipool currently donates 0.5% of mining profits to the P2Pool authors."

I interpret this to mean miners pay 1.5% + 0.5% = 2.0% when mining BTC. Is that right?
sr. member
Activity: 453
Merit: 250
dfgfdgfdg
Back to scrypt for a moment, what do people think of TagCoin?

put all these up for mining, they give us interest on all deposits including btc interest Tongue

https://mcxnow.com

O and thanks for fixing NVC for me   Grin

I'm pretty sure we already mine all the mcxnow scrypt coins.  DVC merged mining is coming soon.
Not The Copper Lark and PrimeCoin.

How about the coins that are often seen at the top of the profitability list and have good trading volume: http://www.coinwarz.com/cryptocurrency

It'd be nice if the block confirms were a count down instead of a count up since it does not say what done is.
hero member
Activity: 938
Merit: 1000
www.multipool.us
Help page has been updated with P2Pool info.  Please read!

https://www.multipool.us/help.php
Pages:
Jump to: