Bitcoin Forum
May 08, 2024, 02:09:39 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 203 204 205 206 [207] 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 »
  Print  
Author Topic: [ANN][FLAP] FlappyCoin ★ OLD/DEAD THREAD GO TO NEW ONE ★  (Read 345256 times)
alchebyte
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
April 21, 2014, 05:46:14 PM
 #4121

Do we have a bounty set up for the guy compiling the Windows wallet?

so we can expect the new wallet shortly?

thimo, are you doing a Gitian build or trying to build this with mingw on Windows?

I don't think you can get the expected executable without doing the Gitian build...
Im doing it with mingw and it seems to be working:

https://i.imgur.com/Ca2lDyy.png

Cool, how did you end up resolving the winsock2 header issue?
"This isn't the kind of software where we can leave so many unresolved bugs that we need a tracker for them." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715134179
Hero Member
*
Offline Offline

Posts: 1715134179

View Profile Personal Message (Offline)

Ignore
1715134179
Reply with quote  #2

1715134179
Report to moderator
1715134179
Hero Member
*
Offline Offline

Posts: 1715134179

View Profile Personal Message (Offline)

Ignore
1715134179
Reply with quote  #2

1715134179
Report to moderator
1715134179
Hero Member
*
Offline Offline

Posts: 1715134179

View Profile Personal Message (Offline)

Ignore
1715134179
Reply with quote  #2

1715134179
Report to moderator
thimo
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500

thimo the dev


View Profile
April 21, 2014, 05:50:23 PM
 #4122

Do we have a bounty set up for the guy compiling the Windows wallet?

so we can expect the new wallet shortly?

thimo, are you doing a Gitian build or trying to build this with mingw on Windows?

I don't think you can get the expected executable without doing the Gitian build...
Im doing it with mingw and it seems to be working:

cut

Cool, how did you end up resolving the winsock2 header issue?
I never have problems with that, but you should probably add the compiler flag -lws32!

Here are the binaries, i'll upload to github in a minute Wink

http://slothcoin.org/download/flappycoin-windows 2.0.0.1.rar

please test it thouroughly and report any bug!

i can rent this1
danfred
Member
**
Offline Offline

Activity: 304
Merit: 10


View Profile
April 21, 2014, 05:50:58 PM
 #4123

I don't think you can get the expected executable without doing the Gitian build...

I not a C++ programmer... but I've learned from Google that the official wallet builds for Litecoin are made using Gitian build process.
cyberhacker
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000



View Profile
April 21, 2014, 05:52:15 PM
 #4124

we are ready to go!!!!!!!!!!!!
thimo
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500

thimo the dev


View Profile
April 21, 2014, 05:54:06 PM
 #4125

Okay first problem, it seems the blockchain won't go further than 5999... I see that there's a diffmode change at block 6000


in main.cpp
Code:
unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock)
{
int DiffMode = 1;
if (fTestNet) {
if (pindexLast->nHeight+1 >= 50) { DiffMode = 2; }
}
else {
if (pindexLast->nHeight+1 >= 6000) { DiffMode = 2; } <----- this
}

if (DiffMode == 1) { return GetNextWorkRequired_V1(pindexLast, pblock); }
else if (DiffMode == 2) { return GetNextWorkRequired_V2(pindexLast, pblock); }
return GetNextWorkRequired_V2(pindexLast, pblock);
}

i can rent this1
alchebyte
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
April 21, 2014, 05:56:39 PM
 #4126

we are ready to go!!!!!!!!!!!!

Slow down, there needs to be some testing first Smiley
flappycoin (OP)
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
April 21, 2014, 05:57:25 PM
 #4127

Do we have a bounty set up for the guy compiling the Windows wallet?

so we can expect the new wallet shortly?

thimo, are you doing a Gitian build or trying to build this with mingw on Windows?

I don't think you can get the expected executable without doing the Gitian build...
Im doing it with mingw and it seems to be working:

cut

Cool, how did you end up resolving the winsock2 header issue?
I never have problems with that, but you should probably add the compiler flag -lws32!

Here are the binaries, i'll upload to github in a minute Wink

http://slothcoin.org/download/flappycoin-windows 2.0.0.1.rar

please test it thouroughly and report any bug!

Will do. Just one moment downloading now for testing. What's your flap address by the way?
thimo
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500

thimo the dev


View Profile
April 21, 2014, 05:59:52 PM
 #4128

Will do. Just one moment downloading now for testing. What's your flap address by the way?
Hold on, let's first get it working properly.

You have added the KGW fix yourself right?

i can rent this1
flappycoin (OP)
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
April 21, 2014, 06:05:16 PM
 #4129

Will do. Just one moment downloading now for testing. What's your flap address by the way?
Hold on, let's first get it working properly.

You have added the KGW fix yourself right?

I have.

Are you looking at the below fork or the old fork?

We don't have access to flappycoin of github, so we had to do a fork awhile back off the master fork listed at FlapCoin.

https://github.com/FlapCoin/flapcoin/commits/master

You'll see commits there. At the same point the KGW exploit fix was implemented then it's block number changed.
thimo
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500

thimo the dev


View Profile
April 21, 2014, 06:05:50 PM
 #4130

Okay fixed it, i'm downloading the entire chain to make sure everything is okay. Then i will compile wallets and upload.

i can rent this1
alchebyte
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
April 21, 2014, 06:08:00 PM
 #4131

Okay first problem, it seems the blockchain won't go further than 5999... I see that there's a diffmode change at block 6000


in main.cpp
Code:
unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock)
{
int DiffMode = 1;
if (fTestNet) {
if (pindexLast->nHeight+1 >= 50) { DiffMode = 2; }
}
else {
if (pindexLast->nHeight+1 >= 6000) { DiffMode = 2; } <----- this
}

if (DiffMode == 1) { return GetNextWorkRequired_V1(pindexLast, pblock); }
else if (DiffMode == 2) { return GetNextWorkRequired_V2(pindexLast, pblock); }
return GetNextWorkRequired_V2(pindexLast, pblock);
}

I hope that's not from the original source, that's pretty ugly logic there Sad
spartagates
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
April 21, 2014, 06:15:32 PM
 #4132



 Grin

flappycoin (OP)
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
April 21, 2014, 06:16:38 PM
 #4133

You have no idea how much we appreciate the work; and we are getting things ready now. Discussing/sending information for DNS switching, we can begin to update links afterwards, the website, and setting up tipbot VPS as we speak.

You also have no idea how much; to everyone for what it is worth we can not apologise enough for this situation.
dogechode
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
April 21, 2014, 06:17:16 PM
 #4134

Okay fixed it, i'm downloading the entire chain to make sure everything is okay. Then i will compile wallets and upload.

Awesome thanks!! Looking forward to this. Thimo, are you planning to stay on the team for future compiles or is this a one time thing?
thimo
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500

thimo the dev


View Profile
April 21, 2014, 06:18:37 PM
 #4135

Okay first problem, it seems the blockchain won't go further than 5999... I see that there's a diffmode change at block 6000


in main.cpp
Code:
unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock)
{
int DiffMode = 1;
if (fTestNet) {
if (pindexLast->nHeight+1 >= 50) { DiffMode = 2; }
}
else {
if (pindexLast->nHeight+1 >= 6000) { DiffMode = 2; } <----- this
}

if (DiffMode == 1) { return GetNextWorkRequired_V1(pindexLast, pblock); }
else if (DiffMode == 2) { return GetNextWorkRequired_V2(pindexLast, pblock); }
return GetNextWorkRequired_V2(pindexLast, pblock);
}

I hope that's not from the original source, that's pretty ugly logic there Sad

That's pretty hard to read code, but getting it to work is top priority of course!

It isn't that bad, it works.

Code:
unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock)
{
if (fTestNet) {
if (pindexLast->nHeight+1 >= 50) {  return GetNextWorkRequired_V2(pindexLast, pblock); }
}

if (pindexLast->nHeight+1 >= 6000) { return GetNextWorkRequired_V2(pindexLast, pblock); }
return GetNextWorkRequired_V1(pindexLast, pblock);
}
Would work as well Wink

i can rent this1
cyberhacker
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000



View Profile
April 21, 2014, 06:20:09 PM
 #4136

You have no idea how much we appreciate the work; and we are getting things ready now. Discussing/sending information for DNS switching, we can begin to update links afterwards, the website, and setting up tipbot VPS as we speak.

You also have no idea how much; to everyone for what it is worth we can not apologise enough for this situation.

Simply do not disappear forever!

 Roll Eyes
flappycoin (OP)
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
April 21, 2014, 06:22:54 PM
 #4137

You have no idea how much we appreciate the work; and we are getting things ready now. Discussing/sending information for DNS switching, we can begin to update links afterwards, the website, and setting up tipbot VPS as we speak.

You also have no idea how much; to everyone for what it is worth we can not apologise enough for this situation.

Simply do not disappear forever!

 Roll Eyes

I won't. I won't make excuses either. I nearly abandoned the project when half my team quit and my compile guys ended up not delivering. Though that's not fair to everyone; and this is why the old developer left to a couple weeks back(Nearly same situation for him and his team actually). Unable to come up with a solution. After my whole "Is it worth it? What can I do?" I came to the realization that this project needs honesty. It needs maturity and it deserves someone willing to stay and take the blame and attempt to move forward with the community to fix these issues.
cyberhacker
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000



View Profile
April 21, 2014, 06:25:15 PM
 #4138

You have no idea how much we appreciate the work; and we are getting things ready now. Discussing/sending information for DNS switching, we can begin to update links afterwards, the website, and setting up tipbot VPS as we speak.

You also have no idea how much; to everyone for what it is worth we can not apologise enough for this situation.

Simply do not disappear forever!

 Roll Eyes

I won't. I won't make excuses either. I nearly abandoned the project when half my team quit and my compile guys ended up not delivering. Though that's not fair to everyone; and this is why the old developer left to a couple weeks back(Nearly same situation for him and his team actually). Unable to come up with a solution. After my whole "Is it worth it? What can I do?" I came to the realization that this project needs honesty. It needs maturity and it deserves someone willing to stay and take the blame and attempt to move forward with the community to fix these issues.

now we have thimo, let's move on
MarketMagic
Hero Member
*****
Offline Offline

Activity: 777
Merit: 777

Altbone inc.Burial service for altcoins


View Profile
April 21, 2014, 06:27:19 PM
Merited by Vlad2Vlad (7)
 #4139

Do we have a bounty set up for the guy compiling the Windows wallet?


When this is done I am putting up 10,000,000 FLAP towards bounty for guys that sort this problem out after I get a few trades on FLAP when market moves.Then depending on how price works out will donate 10% off all profits back into FLAP organisation.

█████████████████████
spartagates
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
April 21, 2014, 06:28:42 PM
 #4140

I will be sending some flap aswell Cheesy

Pages: « 1 ... 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 203 204 205 206 [207] 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 »
  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!