error
|
|
May 20, 2011, 05:10:12 PM |
|
Hey [Tycho], when I go into my worker's page and then hit 'Reset counters' I get the error 'Insufficient_magic!' and the counters do not reset. Where can I get some more magic?
Sorry for this, will add now. EDIT: Fixed. It worked, thanks for the extra magic!
|
3KzNGwzRZ6SimWuFAgh4TnXzHpruHMZmV8
|
|
|
[Tycho]
|
|
May 20, 2011, 05:27:32 PM |
|
I started mining last weekend, and I had a nice income with my cayman GPU with prop. mode. Now I get like no income compared to what I used to get last weekend per hour? should I change to pps? It's caused by recent difficulty adjustment.
|
Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks ! ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures ( NEW!). Third year in bitcoin business.
|
|
|
FireFox31
Newbie
Offline
Activity: 29
Merit: 0
|
|
May 20, 2011, 09:49:14 PM |
|
I just changed to PPS and now the Deepbit website right sidebar is showing that I'm contributing nothing each day and getting 0.00 BTC. I had been in proportional mode and was getting 0.19 BTC per day after the recent difficulty change.
The number of shares completed by my worker are incrementing correctly. I'm using poclbm 20110325 on Windows with nVidia 460. Can I fix this? Thanks.
|
|
|
|
[Tycho]
|
|
May 20, 2011, 09:55:40 PM |
|
I just changed to PPS and now the Deepbit website right sidebar is showing that I'm contributing nothing each day and getting 0.00 BTC. I had been in proportional mode and was getting 0.19 BTC per day after the recent difficulty change. Your history column shows latest solved blocks and your part of those blocks if you are using Proportional mode. With PPS mode your reward doesn't depends on blocks at all, so it's not shown there. Your balance will just increase each hour.
|
Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks ! ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures ( NEW!). Third year in bitcoin business.
|
|
|
FireFox31
Newbie
Offline
Activity: 29
Merit: 0
|
|
May 20, 2011, 09:57:34 PM |
|
Thanks Tycho. You're a champ for replying so fast!
|
|
|
|
three_sixteen
Newbie
Offline
Activity: 5
Merit: 0
|
|
May 20, 2011, 11:29:02 PM |
|
Can you please adjust the API to output JSON in an easier to use format? current: { "confirmed_reward":0.00486235, "hashrate":17.13793103, "ipa":false, "workers":{ "workername1":{ "alive":true, "shares":8, "stales":0 }, "workername2":{ "alive":true, "shares":11, "stales":0 }, "workername3":{ "alive":true, "shares":4, "stales":0 } } }
Proposed change: { "confirmed_reward":0.00486235, "hashrate":17.13793103, "ipa":false, "workers":[{ "name":"worker1", "alive":true, "shares":8, "stales":0 }, { "name":"worker2", "alive":true, "shares":11, "stales":0 }, { "name":"worker3", "alive":true, "shares":4, "stales":0 } ] }
|
|
|
|
[Tycho]
|
|
May 20, 2011, 11:39:30 PM |
|
Can you please adjust the API to output JSON in an easier to use format? Some people already asked me for that, but I can't just change it because that would break all the existing software. May be it can be done as optional mode by additional key. (And I wanted to do JSONP too). The existing JSON format is perfectly readable and valid. Do you need help with parsing it ? What programming language do you use ?
|
Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks ! ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures ( NEW!). Third year in bitcoin business.
|
|
|
three_sixteen
Newbie
Offline
Activity: 5
Merit: 0
|
|
May 21, 2011, 02:56:30 AM |
|
Can you please adjust the API to output JSON in an easier to use format? Some people already asked me for that, but I can't just change it because that would break all the existing software. May be it can be done as optional mode by additional key. (And I wanted to do JSONP too). The existing JSON format is perfectly readable and valid. Do you need help with parsing it ? What programming language do you use ? I'm using .NET and the current message format seems to be preventing me from using a DataContractJsonSerializer on the worker objects. I'd like to avoid using the json serializer on codeplex and just do it natively. It's not a big deal, really. No worries.
|
|
|
|
Veldy
Member
Offline
Activity: 98
Merit: 10
|
|
May 21, 2011, 03:32:31 AM |
|
Can you please adjust the API to output JSON in an easier to use format? Some people already asked me for that, but I can't just change it because that would break all the existing software. May be it can be done as optional mode by additional key. (And I wanted to do JSONP too). The existing JSON format is perfectly readable and valid. Do you need help with parsing it ? What programming language do you use ? I'm using .NET and the current message format seems to be preventing me from using a DataContractJsonSerializer on the worker objects. I'd like to avoid using the json serializer on codeplex and just do it natively. It's not a big deal, really. No worries. JSON parsing looks to be so simple that you are probably better off writing your own anyway since it should fit into your app exactly the way you intend and will be as lightweight as possible where caned code is possibly over engineered or over featured for what you want. There is good code on Codeplex, but clearly you are suffering from a limitation now anyway :$ BTW, is there an official JSON spec?
|
If you have found my post helpful, please donate what you feel it is worth: 18vaZ4K62WiL6W2Qoj9AE1cerfCHRaUW4x
|
|
|
three_sixteen
Newbie
Offline
Activity: 5
Merit: 0
|
|
May 21, 2011, 09:39:32 AM |
|
Can you please adjust the API to output JSON in an easier to use format? Some people already asked me for that, but I can't just change it because that would break all the existing software. May be it can be done as optional mode by additional key. (And I wanted to do JSONP too). The existing JSON format is perfectly readable and valid. Do you need help with parsing it ? What programming language do you use ? I'm using .NET and the current message format seems to be preventing me from using a DataContractJsonSerializer on the worker objects. I'd like to avoid using the json serializer on codeplex and just do it natively. It's not a big deal, really. No worries. JSON parsing looks to be so simple that you are probably better off writing your own anyway since it should fit into your app exactly the way you intend and will be as lightweight as possible where caned code is possibly over engineered or over featured for what you want. There is good code on Codeplex, but clearly you are suffering from a limitation now anyway :$ BTW, is there an official JSON spec? Yes: http://www.json.org/javadoc/org/json/JSONArray.htmlhttp://www.ietf.org/rfc/rfc4627.txtA JSONArray is an ordered sequence of values. Its external text form is a string wrapped in square brackets with commas separating the values.
|
|
|
|
[Tycho]
|
|
May 21, 2011, 02:15:07 PM |
|
A JSONArray is an ordered sequence of values. Its external text form is a string wrapped in square brackets with commas separating the values. :) Doesn't your DataContractJsonSerializer supports key-value arrays ?
|
Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks ! ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures ( NEW!). Third year in bitcoin business.
|
|
|
kjhd456
Newbie
Offline
Activity: 24
Merit: 0
|
|
May 21, 2011, 04:01:42 PM |
|
Can you please cover the passwords on the site. I don't feel comfortable using my passwords on my miners without covering it with stars or something.
|
|
|
|
[Tycho]
|
|
May 21, 2011, 04:20:54 PM |
|
Can you please cover the passwords on the site. I don't feel comfortable using my passwords on my miners without covering it with stars or something. I'm planning to add some options for this column. Do not use same password for your workers and main account. You can create a new worker, then change your main password - this way you'll have a worker with hidded password that isn't the same as your main one.
|
Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks ! ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures ( NEW!). Third year in bitcoin business.
|
|
|
three_sixteen
Newbie
Offline
Activity: 5
Merit: 0
|
|
May 21, 2011, 06:42:26 PM |
|
A JSONArray is an ordered sequence of values. Its external text form is a string wrapped in square brackets with commas separating the values. Doesn't your DataContractJsonSerializer supports key-value arrays ? It can't turn the workers into an array because the array isn't constructed with square brackets, it's dumb - but that's the problem I'm facing hehe
|
|
|
|
bmoney
Newbie
Offline
Activity: 10
Merit: 0
|
|
May 21, 2011, 09:57:55 PM |
|
deepbit is down, what's going on? website and mining
|
|
|
|
bmoney
Newbie
Offline
Activity: 10
Merit: 0
|
|
May 21, 2011, 10:01:18 PM |
|
deepbit is down, what's going on? website and mining
website now back up but mining still down.
|
|
|
|
[Tycho]
|
|
May 21, 2011, 10:03:22 PM |
|
Working on this, sorry.
|
Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks ! ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures ( NEW!). Third year in bitcoin business.
|
|
|
bmoney
Newbie
Offline
Activity: 10
Merit: 0
|
|
May 21, 2011, 10:04:11 PM |
|
Working on this, sorry.
np, ty, just wanted to make sure you were aware and were working on it
|
|
|
|
backburn
Member
Offline
Activity: 111
Merit: 10
★Trash&Burn [TBC/TXB]★
|
|
May 21, 2011, 10:07:42 PM |
|
Web and Mining up @ 3pm PST 5/21/11. Oh lawd, im 30% of the pools hashes XD.
Thanks for hopping on it super fast tycho.
|
|
|
|
[Tycho]
|
|
May 21, 2011, 10:26:58 PM |
|
Still fixing it.
|
Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks ! ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures ( NEW!). Third year in bitcoin business.
|
|
|
|