Pages:
Author

Topic: [Bounty in BTC] Elacoin windows -qt binary ( Need donators aswell ) (Read 4607 times)

full member
Activity: 181
Merit: 100
it's compiling now, so we'll have binaries with the retarget for all platforms. cept android.
full member
Activity: 181
Merit: 100
I have no reason to doubt the legitimacy but I'd like to be able to successfully compile the QT wallet for myself for all future coins rather than relying on someone else's binaries.

this makes alot of sense if you read the source, or at least diff it against a known good set, before you compile it.

we're creating a step by step guide for it too
hero member
Activity: 630
Merit: 502
I have no reason to doubt the legitimacy but I'd like to be able to successfully compile the QT wallet for myself for all future coins rather than relying on someone else's binaries.
hero member
Activity: 826
Merit: 1001
@Bit_John
Seems pretty legit from what I have seen
hero member
Activity: 630
Merit: 502
Also you have to make some changes to elacoin-qt.pro and src/makefile.mingw. Some libraries are needed in a different order

Any chance you could elaborate on the exact changes you made to elacoin-qt.pro or perhaps provide the file so I can compare it line by line to the original version? I've been trying without success to compile the QT wallet and have had no luck yet the daemon compiles fine. It's very frustrating. Cheesy
sr. member
Activity: 294
Merit: 250
so yeah...... The elacoin-qt crashes after like block 1200 for me? with (System cannot find file or directory) cmd windows.
legendary
Activity: 1274
Merit: 1050
Can someone please post some addnodes ? ( can't find them in the thread, so many many posts ) My qt wont connect to the network.
Thanks in advance !

There is a file in the .rar called elacoin.conf copy this to your AppData\Roaming\Elacoin and it should connect.

Nodes are in the elacoin.conf

thanks men !!
member
Activity: 112
Merit: 10
Can someone please post some addnodes ? ( can't find them in the thread, so many many posts ) My qt wont connect to the network.
Thanks in advance !

There is a file in the .rar called elacoin.conf copy this to your AppData\Roaming\Elacoin and it should connect.

Nodes are in the elacoin.conf
legendary
Activity: 1274
Merit: 1050
Can someone please post some addnodes ? ( can't find them in the thread, so many many posts ) My qt wont connect to the network.
Thanks in advance !
legendary
Activity: 934
Merit: 1000
Elacoin dev inserted checkpoints to overwrite the actual blockchain with one that he created in private.

This is old news people.
Yup.. So mebezac had ran ur QT with the premined blockchain ;-)

Thanks
member
Activity: 112
Merit: 10
Hmmm.. That sounds like a checkpoint issue.. 2499 blocks left? or 2499 loaded?

was your appdata/elacoin dir empty when u started? Wesjuh had a similar issue but that solved it for him

Thanks,

totally forgot I had ran it earlier and didn't clean my appdata out, runs like a charm now, thanks!
legendary
Activity: 980
Merit: 1000
Elacoin dev inserted checkpoints to overwrite the actual blockchain with one that he created in private.

This is old news people.
legendary
Activity: 934
Merit: 1000
Hmmm.. That sounds like a checkpoint issue.. 2499 blocks left? or 2499 loaded?

was your appdata/elacoin dir empty when u started? Wesjuh had a similar issue but that solved it for him
member
Activity: 112
Merit: 10
For some reason I'm getting stuck at 2499 blocks?  Undecided
newbie
Activity: 31
Merit: 0
Thanks tyrion!

Can you tell me what version of mingw, qt, and deps you used?
I was trying to build it, but have some errors with the boost lib.

Sure, I first followed the guide on:
https://bitcointalksearch.org/topic/building-headless-bitcoin-and-bitcoin-qt-on-windows-149479

I used all the mentioned downloads there plus miniupnpc-1.8.

Then the fun part begins because the quide itself is not enough unfortunately..

You have to change the net.cpp file because it loads the upnp lib with a prefix (which is fine for Linux but not on Windows)
Code:
#ifdef USE_UPNP
#ifdef WIN32
#include
#include
#include
#include
#else
#include
#include
#include
#include
#endif
#endif

Also you have to make some changes to elacoin-qt.pro and src/makefile.mingw. Some libraries are needed in a different order and you need to add the
Code:
-D__NO_SYSTEM_INCLUDES 
option to prevent mingw to use the wrong dependencies

I've uploaded changed files here:
https://docs.google.com/file/d/0B0f2VDPOrXt4V05WRFRDejlDYzQ/edit?usp=sharing


Thanks! Indeed, I tried that guide, and did some tweaks in .pro file, but not what you did.
Those changes are gonna be useful in the future Grin
sr. member
Activity: 518
Merit: 250
OK, it hangs after dl-ing a few blocks, but when u restart it if happily resumes..

btw, use the conf file i added in the rar, it contains some working nodes..

Update: New rar file with elacoind.exe as well:
https://docs.google.com/file/d/0B0f2VDPOrXt4bm02SlV5MGtzTXc/edit?usp=sharing

Sent you the 500 BBQ bounty Smiley

Cool! Thanks! So it's working fine on your end now?

Works perfect for me, thank you!
legendary
Activity: 934
Merit: 1000
Thanks tyrion!

Can you tell me what version of mingw, qt, and deps you used?
I was trying to build it, but have some errors with the boost lib.

Sure, I first followed the guide on:
https://bitcointalksearch.org/topic/building-headless-bitcoin-and-bitcoin-qt-on-windows-149479

I used all the mentioned downloads there plus miniupnpc-1.8.

Then the fun part begins because the quide itself is not enough unfortunately..

You have to change the net.cpp file because it loads the upnp lib with a prefix (which is fine for Linux but not on Windows)
Code:
#ifdef USE_UPNP
#ifdef WIN32
#include
#include
#include
#include
#else
#include
#include
#include
#include
#endif
#endif

Also you have to make some changes to elacoin-qt.pro and src/makefile.mingw. Some libraries are needed in a different order and you need to add the
Code:
-D__NO_SYSTEM_INCLUDES 
option to prevent mingw to use the wrong dependencies

I've uploaded changed files here:
https://docs.google.com/file/d/0B0f2VDPOrXt4V05WRFRDejlDYzQ/edit?usp=sharing
legendary
Activity: 934
Merit: 1000
OK, it hangs after dl-ing a few blocks, but when u restart it if happily resumes..

btw, use the conf file i added in the rar, it contains some working nodes..

Update: New rar file with elacoind.exe as well:
https://docs.google.com/file/d/0B0f2VDPOrXt4bm02SlV5MGtzTXc/edit?usp=sharing

Sent you the 500 BBQ bounty Smiley

Cool! Thanks! So it's working fine on your end now?
newbie
Activity: 31
Merit: 0
Thanks tyrion!

Can you tell me what version of mingw, qt, and deps you used?
I was trying to build it, but have some errors with the boost lib.
sr. member
Activity: 518
Merit: 250
OK, it hangs after dl-ing a few blocks, but when u restart it if happily resumes..

btw, use the conf file i added in the rar, it contains some working nodes..

Update: New rar file with elacoind.exe as well:
https://docs.google.com/file/d/0B0f2VDPOrXt4bm02SlV5MGtzTXc/edit?usp=sharing

Sent you the 500 BBQ bounty Smiley
Pages:
Jump to: