Bitcoin Forum
April 18, 2024, 03:36:46 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 [152] 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 ... 311 »
  Print  
Author Topic: [ANN][RIC] Riecoin: constellations POW *CPU* HARD FORK successful, world record  (Read 684905 times)
northranger79510
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
April 30, 2014, 03:40:01 AM
 #3021

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! Smiley

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.

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
1713454606
Hero Member
*
Offline Offline

Posts: 1713454606

View Profile Personal Message (Offline)

Ignore
1713454606
Reply with quote  #2

1713454606
Report to moderator
1713454606
Hero Member
*
Offline Offline

Posts: 1713454606

View Profile Personal Message (Offline)

Ignore
1713454606
Reply with quote  #2

1713454606
Report to moderator
TalkImg was created especially for hosting images on bitcointalk.org: try it next time you want to post an image
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
northranger79510
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
April 30, 2014, 03:48:59 AM
 #3022

damn thinking there was news on android wallet... ah wel, moving on.



Good luck on future endeavors! Cheesy

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.

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
cphr
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 30, 2014, 07:12:35 AM
 #3023

Hello, dga. Maybe this will help you with b15 windows crash problem.
There are next lines on riecoin_process function:
Code:
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
Code:
for (int i = 0; i < PENDING_SIZE; i++) { pending[i] = 0; }
cphr
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 30, 2014, 12:09:03 PM
 #3024

I think next lines have initialization problem too.
Code:
// 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
Hero Member
*****
Offline Offline

Activity: 737
Merit: 511


View Profile WWW
April 30, 2014, 01:25:17 PM
 #3025

Hello, dga. Maybe this will help you with b15 windows crash problem.
There are next lines on riecoin_process function:
Code:
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
Code:
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
Sr. Member
****
Offline Offline

Activity: 251
Merit: 250



View Profile
April 30, 2014, 08:12:57 PM
 #3026

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
Hero Member
*****
Offline Offline

Activity: 737
Merit: 511


View Profile WWW
April 30, 2014, 11:55:50 PM
 #3027

Hello, dga. Maybe this will help you with b15 windows crash problem.
There are next lines on riecoin_process function:
Code:
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
Code:
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 Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
May 01, 2014, 08:19:37 PM
 #3028

Hi Gatra,

Any updates you have for us on this wonderful thursday again? Cheesy

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
istudy92
Jr. Member
*
Offline Offline

Activity: 59
Merit: 10


View Profile
May 01, 2014, 10:02:50 PM
 #3029

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.-__-
northranger79510
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
May 02, 2014, 12:58:58 AM
 #3030

Hey Gatra, I posted the android app code up on github if you can take a look on parameters,etc. Sorry to bug you but need assistance.

https://github.com/AshleyDDD/riecoinj

https://github.com/AshleyDDD/riecoin-wallet

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
gatra (OP)
Hero Member
*****
Offline Offline

Activity: 583
Merit: 505


CTO @ Flixxo, Riecoin dev


View Profile WWW
May 02, 2014, 03:11:24 AM
 #3031

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.txt
Of course the new openssl will be used, and we'll have Riecoin specific optimizations.


           ▄▄▄██████████▄▄▄
       ▄▄██
██████████████████▄▄
     ▄█
█████▀████████████▀██████▄
   ▄█
█████████████████████████████▄
  ▄█
█████████▄█▀▀██████████████████▄
 ▄█
███████████▀██████▄▄█████▄███████▄
▄█
██████████▀██▄▄▄▄██▀▀▀▀▀███████████▄
█████████████▀▀██▀████████▀▀████████
█████████████▄█▀████████████████████
████████▀▀▀▀██▀▀▀▀██████████████████
▀█
██████▀▀▀▀██▀▀▀▀███████████████████▀
 ▀█
███████▄████▄▄███████████████████▀
  ▀█
███████████████████████████████▀
   ▀█
█████████████████████████████▀
     ▀█
█████▄████████████▄██████▀
       ▀▀██
██████████████████▀▀
           ▀▀▀██████████▀▀▀
riecoin       ▄▄█████████▄▄
    ▄██▀▀         ▀▀██▄
  ▄██▀              ▀██▄
 ▄██     ██▄▄          ██▄
▄██      █████▄▄        ██▄
██       ████████▄▄      ██
██       ███████████▄    ██
██       ██████████▀     ██
▀██      ███████▀       ██▀
 ▀██     ████▀         ██▀
  ▀██▄   █▀          ▄██▀
    ▀██▄▄         ▄▄██▀
       ▀▀█████████▀▀
.flixxo   
gatra (OP)
Hero Member
*****
Offline Offline

Activity: 583
Merit: 505


CTO @ Flixxo, Riecoin dev


View Profile WWW
May 02, 2014, 03:15:07 AM
 #3032

Hey Gatra, I posted the android app code up on github if you can take a look on parameters,etc. Sorry to bug you but need assistance.

https://github.com/AshleyDDD/riecoinj

https://github.com/AshleyDDD/riecoin-wallet

I'll take a look!


           ▄▄▄██████████▄▄▄
       ▄▄██
██████████████████▄▄
     ▄█
█████▀████████████▀██████▄
   ▄█
█████████████████████████████▄
  ▄█
█████████▄█▀▀██████████████████▄
 ▄█
███████████▀██████▄▄█████▄███████▄
▄█
██████████▀██▄▄▄▄██▀▀▀▀▀███████████▄
█████████████▀▀██▀████████▀▀████████
█████████████▄█▀████████████████████
████████▀▀▀▀██▀▀▀▀██████████████████
▀█
██████▀▀▀▀██▀▀▀▀███████████████████▀
 ▀█
███████▄████▄▄███████████████████▀
  ▀█
███████████████████████████████▀
   ▀█
█████████████████████████████▀
     ▀█
█████▄████████████▄██████▀
       ▀▀██
██████████████████▀▀
           ▀▀▀██████████▀▀▀
riecoin       ▄▄█████████▄▄
    ▄██▀▀         ▀▀██▄
  ▄██▀              ▀██▄
 ▄██     ██▄▄          ██▄
▄██      █████▄▄        ██▄
██       ████████▄▄      ██
██       ███████████▄    ██
██       ██████████▀     ██
▀██      ███████▀       ██▀
 ▀██     ████▀         ██▀
  ▀██▄   █▀          ▄██▀
    ▀██▄▄         ▄▄██▀
       ▀▀█████████▀▀
.flixxo   
gatra (OP)
Hero Member
*****
Offline Offline

Activity: 583
Merit: 505


CTO @ Flixxo, Riecoin dev


View Profile WWW
May 02, 2014, 04:04:38 AM
 #3033

Hey Gatra, I posted the android app code up on github if you can take a look on parameters,etc. Sorry to bug you but need assistance.

https://github.com/AshleyDDD/riecoinj

https://github.com/AshleyDDD/riecoin-wallet

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?


           ▄▄▄██████████▄▄▄
       ▄▄██
██████████████████▄▄
     ▄█
█████▀████████████▀██████▄
   ▄█
█████████████████████████████▄
  ▄█
█████████▄█▀▀██████████████████▄
 ▄█
███████████▀██████▄▄█████▄███████▄
▄█
██████████▀██▄▄▄▄██▀▀▀▀▀███████████▄
█████████████▀▀██▀████████▀▀████████
█████████████▄█▀████████████████████
████████▀▀▀▀██▀▀▀▀██████████████████
▀█
██████▀▀▀▀██▀▀▀▀███████████████████▀
 ▀█
███████▄████▄▄███████████████████▀
  ▀█
███████████████████████████████▀
   ▀█
█████████████████████████████▀
     ▀█
█████▄████████████▄██████▀
       ▀▀██
██████████████████▀▀
           ▀▀▀██████████▀▀▀
riecoin       ▄▄█████████▄▄
    ▄██▀▀         ▀▀██▄
  ▄██▀              ▀██▄
 ▄██     ██▄▄          ██▄
▄██      █████▄▄        ██▄
██       ████████▄▄      ██
██       ███████████▄    ██
██       ██████████▀     ██
▀██      ███████▀       ██▀
 ▀██     ████▀         ██▀
  ▀██▄   █▀          ▄██▀
    ▀██▄▄         ▄▄██▀
       ▀▀█████████▀▀
.flixxo   
gatra (OP)
Hero Member
*****
Offline Offline

Activity: 583
Merit: 505


CTO @ Flixxo, Riecoin dev


View Profile WWW
May 02, 2014, 04:14:36 AM
 #3034

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?


           ▄▄▄██████████▄▄▄
       ▄▄██
██████████████████▄▄
     ▄█
█████▀████████████▀██████▄
   ▄█
█████████████████████████████▄
  ▄█
█████████▄█▀▀██████████████████▄
 ▄█
███████████▀██████▄▄█████▄███████▄
▄█
██████████▀██▄▄▄▄██▀▀▀▀▀███████████▄
█████████████▀▀██▀████████▀▀████████
█████████████▄█▀████████████████████
████████▀▀▀▀██▀▀▀▀██████████████████
▀█
██████▀▀▀▀██▀▀▀▀███████████████████▀
 ▀█
███████▄████▄▄███████████████████▀
  ▀█
███████████████████████████████▀
   ▀█
█████████████████████████████▀
     ▀█
█████▄████████████▄██████▀
       ▀▀██
██████████████████▀▀
           ▀▀▀██████████▀▀▀
riecoin       ▄▄█████████▄▄
    ▄██▀▀         ▀▀██▄
  ▄██▀              ▀██▄
 ▄██     ██▄▄          ██▄
▄██      █████▄▄        ██▄
██       ████████▄▄      ██
██       ███████████▄    ██
██       ██████████▀     ██
▀██      ███████▀       ██▀
 ▀██     ████▀         ██▀
  ▀██▄   █▀          ▄██▀
    ▀██▄▄         ▄▄██▀
       ▀▀█████████▀▀
.flixxo   
northranger79510
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
May 02, 2014, 06:15:45 AM
 #3035

Hey Gatra, I posted the android app code up on github if you can take a look on parameters,etc. Sorry to bug you but need assistance.

https://github.com/AshleyDDD/riecoinj

https://github.com/AshleyDDD/riecoin-wallet

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.

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
northranger79510
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
May 02, 2014, 06:18:55 AM
 #3036

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.txt
Of 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 Cheesy. Can we get a rough estimate of when it will be ready? Like 2-3 weeks perhaps?

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
northranger79510
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
May 02, 2014, 06:30:06 AM
 #3037

Hey Gatra, can you remove Cryptokk from exchange list? They supposedly got "hacked"

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
aamarket
Sr. Member
****
Offline Offline

Activity: 259
Merit: 250


View Profile WWW
May 02, 2014, 11:10:01 AM
 #3038

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
Sr. Member
****
Offline Offline

Activity: 249
Merit: 250


View Profile
May 02, 2014, 03:15:02 PM
 #3039

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
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250



View Profile
May 02, 2014, 03:19:17 PM
 #3040

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 Sad

how many confirmation to get in order to get paid?
Pages: « 1 ... 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 [152] 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 ... 311 »
  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!