northranger79510
Sr. Member
Offline
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
|
|
April 30, 2014, 03:40:01 AM |
|
damn thinking there was news on android wallet... ah wel, moving on.
Well I think northranger is close to finishing it...don't move on just yet! I think I am. A lot of renaming files...Like at least 50-70 files. Could write a script for that but I don't want to accidentally do anything wrong so I am doing it manually.
|
|
|
|
northranger79510
Sr. Member
Offline
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
|
|
April 30, 2014, 03:48:59 AM |
|
damn thinking there was news on android wallet... ah wel, moving on.
Good luck on future endeavors! I am new to android so I'd like to test things about before actually releasing anything to the public in case I screw up.
|
|
|
|
cphr
Newbie
Offline
Activity: 9
Merit: 0
|
|
April 30, 2014, 07:12:35 AM |
|
Hello, dga. Maybe this will help you with b15 windows crash problem. There are next lines on riecoin_process function: uint32_t pending[PENDING_SIZE]; uint32_t pending_pos = 0; for (uint32_t i = 0; i < segment_counts[loop]; i++) { add_to_pending(sieve, pending, pending_pos, segment_hits[loop][i]); } pending array has no initial values and it causes memory access violation, program crashes at start(on win by default it has all values more than 3 billion). It needs something like that for (int i = 0; i < PENDING_SIZE; i++) { pending[i] = 0; }
|
|
|
|
cphr
Newbie
Offline
Activity: 9
Merit: 0
|
|
April 30, 2014, 12:09:03 PM |
|
I think next lines have initialization problem too. // scan for candidates riecoinPrimeTestWork w; w.testWork.n_indexes = 0; w.testWork.loop = loop; w variable needs w.type = TYPE_CHECK; On windows it will never start to check candidates.
|
|
|
|
dga
|
|
April 30, 2014, 01:25:17 PM |
|
Hello, dga. Maybe this will help you with b15 windows crash problem. There are next lines on riecoin_process function: uint32_t pending[PENDING_SIZE]; uint32_t pending_pos = 0; for (uint32_t i = 0; i < segment_counts[loop]; i++) { add_to_pending(sieve, pending, pending_pos, segment_hits[loop][i]); } pending array has no initial values and it causes memory access violation, program crashes at start(on win by default it has all values more than 3 billion). It needs something like that for (int i = 0; i < PENDING_SIZE; i++) { pending[i] = 0; } Agh! Thank you so much for spotting this. I've killed my main dev machine for a few hours but I'll get this fixed tonight. I thought I'd already fixed that bug, but I think I fixed it incorrectly.
|
|
|
|
bitcoinvideos
|
|
April 30, 2014, 08:12:57 PM |
|
I know you said you thought it would help float difficulty above 1700 but it seems to keep hovering right below that still...what are your thoughts on this?
|
|
|
|
dga
|
|
April 30, 2014, 11:55:50 PM |
|
Hello, dga. Maybe this will help you with b15 windows crash problem. There are next lines on riecoin_process function: uint32_t pending[PENDING_SIZE]; uint32_t pending_pos = 0; for (uint32_t i = 0; i < segment_counts[loop]; i++) { add_to_pending(sieve, pending, pending_pos, segment_hits[loop][i]); } pending array has no initial values and it causes memory access violation, program crashes at start(on win by default it has all values more than 3 billion). It needs something like that for (int i = 0; i < PENDING_SIZE; i++) { pending[i] = 0; } Agh! Thank you so much for spotting this. I've killed my main dev machine for a few hours but I'll get this fixed tonight. I thought I'd already fixed that bug, but I think I fixed it incorrectly. Valid bug - I'd fixed it in one use of pending but not the second - but it's not the one that's causing windows to hang. Still seems like a thread deadlock. Fix for this one committed to the github repository.
|
|
|
|
northranger79510
Sr. Member
Offline
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
|
|
May 01, 2014, 08:19:37 PM |
|
Hi Gatra, Any updates you have for us on this wonderful thursday again?
|
|
|
|
istudy92
Jr. Member
Offline
Activity: 59
Merit: 10
|
|
May 01, 2014, 10:02:50 PM |
|
Thursdays come by soo quickly.
I put b15 on my linnux machine i get 30sh/h =[ idk why. Ill keep posted on what I did wrong.-__-
|
|
|
|
|
gatra (OP)
|
|
May 02, 2014, 03:11:24 AM |
|
Thursdays come by soo quickly.
I couldn't agree more... I'll mention some of the features of the new client so everyone can understand why it's taking so long: - Coin Control! if you want to, you can choose the inputs for your tx when you send RIC - Payment requests - this is a whole new world: we'll have "riecoin:" URIs - new makefiles (autotools): build with "./autogen.sh; ./configure; make" - New receive coins workflow, with invoices And all of these that can we applied to RIC will be applied: https://bitcoin.org/bin/0.9.0/README.txtOf course the new openssl will be used, and we'll have Riecoin specific optimizations.
|
|
|
|
gatra (OP)
|
|
May 02, 2014, 03:15:07 AM |
|
|
|
|
|
gatra (OP)
|
|
May 02, 2014, 04:04:38 AM |
|
The params I see on the repository are identical to the originals from bitcoin. Are you sure you pushed all your commits? which branch are you developing on?
|
|
|
|
gatra (OP)
|
|
May 02, 2014, 04:14:36 AM |
|
northranger is spot on with RIC. It is not a coin that a traditional pump and dump or scam feature coin. It provides, real, sustainable additions to the science community. To that end, a fast explosive growth pattern would not be conducive to stable, long term growth. Future development would include stratum support for sure and the addition of more pools to increase mining adoption rates.
At least I think that's what we are going for?
yep, useful features (like coin control) will be included, but I think we don't need PoS or decentralized exchanges (at least as they are currently implemented in other coins) or other features which I consider of "dubious fairness" (requiring IPOs or skewing rewards in an obscene way towards early adopters). we do have a huge list of developments to do compiled in riecontalk, right?
|
|
|
|
northranger79510
Sr. Member
Offline
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
|
|
May 02, 2014, 06:15:45 AM |
|
The params I see on the repository are identical to the originals from bitcoin. Are you sure you pushed all your commits? which branch are you developing on? Oops, I did not push all commits. Sorry about that. I will do that later today. The only problem I have is when I change the nonce to 0, the app crashes on me.
|
|
|
|
northranger79510
Sr. Member
Offline
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
|
|
May 02, 2014, 06:18:55 AM |
|
Thursdays come by soo quickly.
I couldn't agree more... I'll mention some of the features of the new client so everyone can understand why it's taking so long: - Coin Control! if you want to, you can choose the inputs for your tx when you send RIC - Payment requests - this is a whole new world: we'll have "riecoin:" URIs - new makefiles (autotools): build with "./autogen.sh; ./configure; make" - New receive coins workflow, with invoices And all of these that can we applied to RIC will be applied: https://bitcoin.org/bin/0.9.0/README.txtOf course the new openssl will be used, and we'll have Riecoin specific optimizations. This sounds great but don't make too many commitments right now. One at a time . Can we get a rough estimate of when it will be ready? Like 2-3 weeks perhaps?
|
|
|
|
northranger79510
Sr. Member
Offline
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
|
|
May 02, 2014, 06:30:06 AM |
|
Hey Gatra, can you remove Cryptokk from exchange list? They supposedly got "hacked"
|
|
|
|
aamarket
|
|
May 02, 2014, 11:10:01 AM |
|
just to make it easier for everybody to start a miner - I can create a small working virtual machine, which can be used anywhere (win/linux/mac). Anybody interested ?
|
IMPORTANT:http://bitcointalk.org/index.php?topic=177133.0,Tips welcome BTC:1AAMARKETmJvfjDwEFmhyYYwfre7ZFVseP RIC:RGnX6LcJrsVEuYeySDDxkmH7AjRqoprcKt
|
|
|
primer10
|
|
May 02, 2014, 03:15:02 PM |
|
just to make it easier for everybody to start a miner - I can create a small working virtual machine, which can be used anywhere (win/linux/mac). Anybody interested ?
sounds cool!
|
|
|
|
goodluck0319
|
|
May 02, 2014, 03:19:17 PM |
|
I am mining on http://ric.upcpu.com right now. I am wondering when is the payout. according to my address: 0.0274390244 - balance 0.0597800096 - unconfirmed 0.0000000000 - paid how many confirmation to get in order to get paid?
|
|
|
|
|