Bitcoin Forum
June 21, 2024, 06:21:23 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 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 »
  Print  
Author Topic: [ANN] [TIX] Tickets | TIX/CNY Market on Bter | First on Cryptsy XPM Market  (Read 114664 times)
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
October 10, 2013, 01:55:33 AM
 #661

Looks much better

vual
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile
October 10, 2013, 05:38:03 AM
 #662

Ok, github is updated

According to https://github.com/LotteryTickets/LotteryTickets/commits/master the only modifications, this time, were new icons.  I guess I already had the 1.1 version (compiled from source yesterday), which fixed a warning about checkpoints being too old. That other issue regarding getbalance is not fixed.

Yea, we updated the github yesterday, QT took a little longer to get finished. The issue you describe has been an issue that stems way back and affects a lot of coins. There's a few ways around it that I linked a few posts back

Ok, I decided to look into the issue. Here is a proper patch that solves the issue, the problem was due to usage of an unitialized param:

Code:
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 613611c..a074ddf 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -672,7 +672,7 @@ void CWalletTx::GetAmounts(int64& nGeneratedImmature, int64& nGeneratedMature, l
 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived,
                                   int64& nSent, int64& nFee) const
 {
-    nReceived = nSent = nFee = 0;
+    nGenerated = nReceived = nSent = nFee = 0;
 
     int64 allGeneratedImmature, allGeneratedMature, allFee;
     string strSentAccount;

HERO!!! +REP Smiley Tongue
Did you submit it to git so it can be in next build?
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
October 11, 2013, 02:23:22 AM
 #663

GPU mining efficiency just dropped big time. Still a lot to get but it's going down quick

SpeedDemon13
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500



View Profile WWW
October 11, 2013, 02:50:17 AM
 #664

GPU mining efficiency just dropped big time. Still a lot to get but it's going down quick

Dropped about 40% to 50%....

CRYPTSY exchange: https://www.cryptsy.com/users/register?refid=9017 BURST= BURST-TE3W-CFGH-7343-6VM6R BTC=1CNsqGUR9YJNrhydQZnUPbaDv6h4uaYCHv ETH=0x144bc9fe471d3c71d8e09d58060d78661b1d4f32 SHF=0x13a0a2cb0d55eca975cf2d97015f7d580ce52d85 EXP=0xd71921dca837e415a58ca0d6dd2223cc84e0ea2f SC=6bdf9d12a983fed6723abad91a39be4f95d227f9bdb0490de3b8e5d45357f63d564638b1bd71 CLAMS=xGVTdM9EJpNBCYAjHFVxuZGcqvoL22nP6f SOIL=0x8b5c989bc931c0769a50ecaf9ffe490c67cb5911
Lottery Tickets (OP)
Newbie
*
Offline Offline

Activity: 70
Merit: 0



View Profile
October 11, 2013, 03:11:57 AM
 #665

GPU mining efficiency just dropped big time. Still a lot to get but it's going down quick

Dropped about 40% to 50%....

That's the point of scrypt-jane. It's made to be CPU coin by the time the rewards go flat
Lottery Tickets (OP)
Newbie
*
Offline Offline

Activity: 70
Merit: 0



View Profile
October 11, 2013, 03:41:23 AM
 #666

Ok, github is updated

According to https://github.com/LotteryTickets/LotteryTickets/commits/master the only modifications, this time, were new icons.  I guess I already had the 1.1 version (compiled from source yesterday), which fixed a warning about checkpoints being too old. That other issue regarding getbalance is not fixed.

Yea, we updated the github yesterday, QT took a little longer to get finished. The issue you describe has been an issue that stems way back and affects a lot of coins. There's a few ways around it that I linked a few posts back

Ok, I decided to look into the issue. Here is a proper patch that solves the issue, the problem was due to usage of an unitialized param:

Code:
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 613611c..a074ddf 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -672,7 +672,7 @@ void CWalletTx::GetAmounts(int64& nGeneratedImmature, int64& nGeneratedMature, l
 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived,
                                   int64& nSent, int64& nFee) const
 {
-    nReceived = nSent = nFee = 0;
+    nGenerated = nReceived = nSent = nFee = 0;
 
     int64 allGeneratedImmature, allGeneratedMature, allFee;
     string strSentAccount;

HERO!!! +REP Smiley Tongue
Did you submit it to git so it can be in next build?

Please put it on the github so it can be reviewed and committed for the daemon. Forum posts and github are two separate parts of the dev team
Badman0316
Hero Member
*****
Offline Offline

Activity: 569
Merit: 500



View Profile
October 11, 2013, 03:55:42 AM
 #667

my miner said share is above the target again
how to fix it

Lottery Tickets (OP)
Newbie
*
Offline Offline

Activity: 70
Merit: 0



View Profile
October 11, 2013, 03:58:05 AM
 #668

my miner said share is above the target again
how to fix it

What is in your .bat?
SpeedDemon13
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500



View Profile WWW
October 11, 2013, 04:17:16 AM
 #669

GPU mining efficiency just dropped big time. Still a lot to get but it's going down quick

Dropped about 40% to 50%....

That's the point of scrypt-jane. It's made to be CPU coin by the time the rewards go flat

I know, just wanted to relay the info out to people. Probably in a week, it's not going to yield on the positive side of gains.

CRYPTSY exchange: https://www.cryptsy.com/users/register?refid=9017 BURST= BURST-TE3W-CFGH-7343-6VM6R BTC=1CNsqGUR9YJNrhydQZnUPbaDv6h4uaYCHv ETH=0x144bc9fe471d3c71d8e09d58060d78661b1d4f32 SHF=0x13a0a2cb0d55eca975cf2d97015f7d580ce52d85 EXP=0xd71921dca837e415a58ca0d6dd2223cc84e0ea2f SC=6bdf9d12a983fed6723abad91a39be4f95d227f9bdb0490de3b8e5d45357f63d564638b1bd71 CLAMS=xGVTdM9EJpNBCYAjHFVxuZGcqvoL22nP6f SOIL=0x8b5c989bc931c0769a50ecaf9ffe490c67cb5911
SpeedDemon13
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500



View Profile WWW
October 11, 2013, 04:19:44 AM
 #670

my miner said share is above the target again
how to fix it

Lower your TC and Worksize to 128 or 64 first. If that doesn't work, lower your intensity. I run a TC of 8000, worksize=64 and intensity of 18, that runs fine for me with no errors.

CRYPTSY exchange: https://www.cryptsy.com/users/register?refid=9017 BURST= BURST-TE3W-CFGH-7343-6VM6R BTC=1CNsqGUR9YJNrhydQZnUPbaDv6h4uaYCHv ETH=0x144bc9fe471d3c71d8e09d58060d78661b1d4f32 SHF=0x13a0a2cb0d55eca975cf2d97015f7d580ce52d85 EXP=0xd71921dca837e415a58ca0d6dd2223cc84e0ea2f SC=6bdf9d12a983fed6723abad91a39be4f95d227f9bdb0490de3b8e5d45357f63d564638b1bd71 CLAMS=xGVTdM9EJpNBCYAjHFVxuZGcqvoL22nP6f SOIL=0x8b5c989bc931c0769a50ecaf9ffe490c67cb5911
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
October 11, 2013, 05:00:18 AM
 #671

42370756525.42598724 TIX out there so far, about $29k market cap at the moment

qwep
Legendary
*
Offline Offline

Activity: 1008
Merit: 1000



View Profile
October 11, 2013, 05:04:58 AM
 #672

GPU mining efficiency just dropped big time. Still a lot to get but it's going down quick

Dropped about 40% to 50%....

That's the point of scrypt-jane. It's made to be CPU coin by the time the rewards go flat

I know, just wanted to relay the info out to people. Probably in a week, it's not going to yield on the positive side of gains.
yep
knowitnothing
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
October 11, 2013, 05:22:32 AM
 #673

Ok, github is updated

According to https://github.com/LotteryTickets/LotteryTickets/commits/master the only modifications, this time, were new icons.  I guess I already had the 1.1 version (compiled from source yesterday), which fixed a warning about checkpoints being too old. That other issue regarding getbalance is not fixed.

Yea, we updated the github yesterday, QT took a little longer to get finished. The issue you describe has been an issue that stems way back and affects a lot of coins. There's a few ways around it that I linked a few posts back

Ok, I decided to look into the issue. Here is a proper patch that solves the issue, the problem was due to usage of an unitialized param:

Code:
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 613611c..a074ddf 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -672,7 +672,7 @@ void CWalletTx::GetAmounts(int64& nGeneratedImmature, int64& nGeneratedMature, l
 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived,
                                   int64& nSent, int64& nFee) const
 {
-    nReceived = nSent = nFee = 0;
+    nGenerated = nReceived = nSent = nFee = 0;
 
     int64 allGeneratedImmature, allGeneratedMature, allFee;
     string strSentAccount;

HERO!!! +REP Smiley Tongue
Did you submit it to git so it can be in next build?

Please put it on the github so it can be reviewed and committed for the daemon. Forum posts and github are two separate parts of the dev team

The only reason I put it here is because this supposed dev team doesn't look at github at all. If that was not the case, you would know that the issue was reported several days ago, and you would also see that this same patch is there (right after I included it here).
qwep
Legendary
*
Offline Offline

Activity: 1008
Merit: 1000



View Profile
October 11, 2013, 05:56:53 AM
 #674

Why GPU mining decreased by a factor of 2
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
October 11, 2013, 06:30:15 AM
 #675

Why GPU mining decreased by a factor of 2

It will slowly decrease to even smaller each time the nFactor shifts, eventually putting this as a CPU only coin. The GPU mining right now is just like an early adopter's bonus

SpeedDemon13
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500



View Profile WWW
October 11, 2013, 06:35:01 AM
 #676

Why GPU mining decreased by a factor of 2

It will slowly decrease to even smaller each time the nFactor shifts, eventually putting this as a CPU only coin. The GPU mining right now is just like an early adopter's bonus

At this rate, probably with this week it will not be profitable to mine with GPU hardware. Hopefully the value of TIX goes up once it's only CPU mining efficient. CPR bottom out pretty fast once GPU mining wasn't efficient and now is just flat on trading.

CRYPTSY exchange: https://www.cryptsy.com/users/register?refid=9017 BURST= BURST-TE3W-CFGH-7343-6VM6R BTC=1CNsqGUR9YJNrhydQZnUPbaDv6h4uaYCHv ETH=0x144bc9fe471d3c71d8e09d58060d78661b1d4f32 SHF=0x13a0a2cb0d55eca975cf2d97015f7d580ce52d85 EXP=0xd71921dca837e415a58ca0d6dd2223cc84e0ea2f SC=6bdf9d12a983fed6723abad91a39be4f95d227f9bdb0490de3b8e5d45357f63d564638b1bd71 CLAMS=xGVTdM9EJpNBCYAjHFVxuZGcqvoL22nP6f SOIL=0x8b5c989bc931c0769a50ecaf9ffe490c67cb5911
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
October 11, 2013, 06:36:48 AM
 #677

Why GPU mining decreased by a factor of 2

It will slowly decrease to even smaller each time the nFactor shifts, eventually putting this as a CPU only coin. The GPU mining right now is just like an early adopter's bonus

At this rate, probably with this week it will not be profitable to mine with GPU hardware. Hopefully the value of TIX goes up once it's only CPU mining efficient. CPR bottom out pretty fast once GPU mining wasn't efficient and now is just flat on trading.

CPR has a very specific use. Apparently TIX has some e-cig shop coming soon or something, too. I am personally holding these for now until the triple digits

SpeedDemon13
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500



View Profile WWW
October 11, 2013, 06:46:43 AM
Last edit: October 11, 2013, 07:27:58 AM by SpeedDemon13
 #678

Why GPU mining decreased by a factor of 2

It will slowly decrease to even smaller each time the nFactor shifts, eventually putting this as a CPU only coin. The GPU mining right now is just like an early adopter's bonus

At this rate, probably with this week it will not be profitable to mine with GPU hardware. Hopefully the value of TIX goes up once it's only CPU mining efficient. CPR bottom out pretty fast once GPU mining wasn't efficient and now is just flat on trading.

CPR has a very specific use. Apparently TIX has some e-cig shop coming soon or something, too. I am personally holding these for now until the triple digits

I like the concept of CPR, don't get me wrong, but wish it had a little more usages like TIX. I like TIX, really is coming into it's own, just hope the market keeps reflecting that.

CRYPTSY exchange: https://www.cryptsy.com/users/register?refid=9017 BURST= BURST-TE3W-CFGH-7343-6VM6R BTC=1CNsqGUR9YJNrhydQZnUPbaDv6h4uaYCHv ETH=0x144bc9fe471d3c71d8e09d58060d78661b1d4f32 SHF=0x13a0a2cb0d55eca975cf2d97015f7d580ce52d85 EXP=0xd71921dca837e415a58ca0d6dd2223cc84e0ea2f SC=6bdf9d12a983fed6723abad91a39be4f95d227f9bdb0490de3b8e5d45357f63d564638b1bd71 CLAMS=xGVTdM9EJpNBCYAjHFVxuZGcqvoL22nP6f SOIL=0x8b5c989bc931c0769a50ecaf9ffe490c67cb5911
qwep
Legendary
*
Offline Offline

Activity: 1008
Merit: 1000



View Profile
October 11, 2013, 07:01:34 AM
 #679

interestingly, its price will rise above 0.000001 after after the store Grin
SpeedDemon13
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500



View Profile WWW
October 11, 2013, 07:30:04 AM
 #680

interestingly, its price will rise above 0.000001 after after the store Grin

Possibly, e-cig's is a potential market. Wait and see. I'm still hold my TIX until is get to that value or at least .0000005.

CRYPTSY exchange: https://www.cryptsy.com/users/register?refid=9017 BURST= BURST-TE3W-CFGH-7343-6VM6R BTC=1CNsqGUR9YJNrhydQZnUPbaDv6h4uaYCHv ETH=0x144bc9fe471d3c71d8e09d58060d78661b1d4f32 SHF=0x13a0a2cb0d55eca975cf2d97015f7d580ce52d85 EXP=0xd71921dca837e415a58ca0d6dd2223cc84e0ea2f SC=6bdf9d12a983fed6723abad91a39be4f95d227f9bdb0490de3b8e5d45357f63d564638b1bd71 CLAMS=xGVTdM9EJpNBCYAjHFVxuZGcqvoL22nP6f SOIL=0x8b5c989bc931c0769a50ecaf9ffe490c67cb5911
Pages: « 1 2 3 4 5 6 7 8 9 10 11 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 »
  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!