Pages:
Author

Topic: Evotion - page 14. (Read 27411 times)

hero member
Activity: 756
Merit: 500
November 28, 2015, 11:31:13 AM
#77
The coin is going well & PoS works fine too Smiley

Any ideas for marketing from the community ?
legendary
Activity: 1232
Merit: 1000
★YoBit.Net★ 1400+ Coins Exchange
November 28, 2015, 10:14:37 AM
#76
rival of bitcoin made by a new account, it sounds like legit
hero member
Activity: 1302
Merit: 504
November 28, 2015, 10:12:10 AM
#75
LMAO at these low sells especially since Evo is moving along now and has Community Members helping. Will they regret it and FUD ? only time will tell  Cheesy
hero member
Activity: 1302
Merit: 504
November 28, 2015, 08:58:39 AM
#74

What theeeee i sure as hell never expected that. that's awesome Grin

Adding to quote Ann Wink


EDIT: if original OP not updated by tommorow i Will make a Thread and ask for this one to be closed (if it can)
legendary
Activity: 1176
Merit: 1005
crunck
November 28, 2015, 08:31:12 AM
#73
sr. member
Activity: 405
Merit: 250
Yuancoin-Official
November 27, 2015, 06:11:15 PM
#72
Good luck man Wink
 Wink
legendary
Activity: 1232
Merit: 1001
November 27, 2015, 06:08:10 PM
#71
POS is kicking in nicely, at "blocks" : 3752,"moneysupply" : 88058.02698894, from possible 120064.00 POW Coins, good job.
newbie
Activity: 36
Merit: 0
November 27, 2015, 10:04:06 AM
#70
I setup a pool for Evotion

Please add to the OP.

http://evo.thefrenchpool.fr

- stratum+tcp://89.38.149.94:3040  vardiff
- Fee 1.5 %
- Payout auto 1 to 32500 Evo

You are all welcome

hero member
Activity: 1302
Merit: 504
November 27, 2015, 09:14:05 AM
#69
Can somebody tell me the Mining price for Evo ?

is it below 500 sats as these sells are beyond me

EDIT: we got EVO on https://yobit.net/en/freecoins/ Grin
hero member
Activity: 1302
Merit: 504
November 27, 2015, 08:41:48 AM
#68

i actually compiled the mac wallet by removing the ;

it looks client specific, so i figured it wouldnt hurt .
and it is obviously a mistake.

hmmm i compiled my win wallet with ; in it as i did not pay any attention so never noticed. Everything works all good for me.

EDIT so seems nothing major Grin
legendary
Activity: 1638
Merit: 1036
November 27, 2015, 08:40:13 AM
#67

i actually compiled the mac wallet by removing the ;

it looks client specific, so i figured it wouldnt hurt .
and it is obviously a mistake.
hero member
Activity: 1302
Merit: 504
November 27, 2015, 08:15:12 AM
#66

Added wallet to my quote ANN post Wink (still thinking we should set up a ANN easier for people to see things then etc.)

That's good about the changes i too have seen the rebranded code shall we call it on github

Yep git confuses me too lol will those pull request effect it in any way as you have managed to build wallet.

Also see chain and pos still going great and some people still selling very cheap  Grin

are you the dev ? the newbie OP poster ?


Not the DEV nor am i a NOOB poster.

I will help out anyway i can as i own some evotion myself Wink


"if statement has empty body"
what does that do to the following code ?

The solution is 1 of these Grin

It could just be a macro that expands to nothing when you compile it. Wink

or we just remove the ; so it's like if (pindex->pprev)

Both very simple and easy to do Grin
legendary
Activity: 1638
Merit: 1036
November 27, 2015, 08:04:20 AM
#65
lol such compile errors.
at least you've fixed some of the git :p i'll pull my copy of the .pro when i gits it to work.

this error is curious though. i'm not sure how you misplaced the comma, or what effect it has.

../src/main.cpp:1660:23: warning: if statement has empty body [-Wempty-body]
    if (pindex->pprev);
                      ^
../src/main.cpp:1660:23: note: put the semicolon on a separate line to silence this warning


Code:
    // Update block index on disk without changing it in memory.
    // The memory index structure will be changed after the db commits.
    if (pindex->pprev);
    {
        CDiskBlockIndex blockindexPrev(pindex->pprev);
        blockindexPrev.hashNext = pindex->GetBlockHash();
        if (!txdb.WriteBlockIndex(blockindexPrev))
            return error("ConnectBlock() : WriteBlockIndex failed");
    }

https://github.com/evoshiun/Evotion/blob/master/src/main.cpp#L1658



Grin see that's what me talking about people getting involved. Awesome news. don't think that code would effect the chain either (i could be wrong but that's just a note from the compiler as i see not an actual error

"if statement has empty body"
what does that do to the following code ?
newbie
Activity: 20
Merit: 0
November 27, 2015, 07:57:55 AM
#64

Added wallet to my quote ANN post Wink (still thinking we should set up a ANN easier for people to see things then etc.)

That's good about the changes i too have seen the rebranded code shall we call it on github

Yep git confuses me too lol will those pull request effect it in any way as you have managed to build wallet.

Also see chain and pos still going great and some people still selling very cheap  Grin

are you the dev ? the newbie OP poster ?
hero member
Activity: 1302
Merit: 504
November 27, 2015, 07:48:38 AM
#63

k. here's a mac compile qt. v1100

https://drive.google.com/file/d/0B5j8d4FSc7dreTZqaFRIcGF0Y1U/view?usp=sharing

..


ha. i created two pull requests :p they have the necessary changes to compile the qt for mac (including changing the src files from bitcoingui.cpp >> evotiongui.cpp etc).

the first pull is also in the second. heh. git confuses me.

https://github.com/evoshiun/Evotion/pull/2

Added wallet to my quote ANN post Wink (still thinking we should set up a ANN easier for people to see things then etc.)

That's good about the changes i too have seen the rebranded code shall we call it on github

Yep git confuses me too lol will those pull request effect it in any way as you have managed to build wallet.

Also see chain and pos still going great and some people still selling very cheap  Grin
hero member
Activity: 1302
Merit: 504
November 27, 2015, 07:37:58 AM
#62
lol such compile errors.
at least you've fixed some of the git :p i'll pull my copy of the .pro when i gits it to work.

this error is curious though. i'm not sure how you misplaced the comma, or what effect it has.

../src/main.cpp:1660:23: warning: if statement has empty body [-Wempty-body]
    if (pindex->pprev);
                      ^
../src/main.cpp:1660:23: note: put the semicolon on a separate line to silence this warning


Code:
    // Update block index on disk without changing it in memory.
    // The memory index structure will be changed after the db commits.
    if (pindex->pprev);
    {
        CDiskBlockIndex blockindexPrev(pindex->pprev);
        blockindexPrev.hashNext = pindex->GetBlockHash();
        if (!txdb.WriteBlockIndex(blockindexPrev))
            return error("ConnectBlock() : WriteBlockIndex failed");
    }

https://github.com/evoshiun/Evotion/blob/master/src/main.cpp#L1658



Grin see that's what me talking about people getting involved. Awesome news. don't think that code would effect the chain either (i could be wrong but that's just a note from the compiler as i see not an actual error
legendary
Activity: 1134
Merit: 1068
November 27, 2015, 04:32:23 AM
#61
legendary
Activity: 2282
Merit: 1051
unnamed.Exchange, join the Cool Kids!!!
November 27, 2015, 04:14:15 AM
#60
is this coin traded on any Exchange ?
legendary
Activity: 1134
Merit: 1068
November 27, 2015, 04:13:12 AM
#59
create a Twitter account, Facebook..
legendary
Activity: 1638
Merit: 1036
November 27, 2015, 02:15:06 AM
#58

k. here's a mac compile qt. v1100

https://drive.google.com/file/d/0B5j8d4FSc7dreTZqaFRIcGF0Y1U/view?usp=sharing

..


ha. i created two pull requests :p they have the necessary changes to compile the qt for mac (including changing the src files from bitcoingui.cpp >> evotiongui.cpp etc).

the first pull is also in the second. heh. git confuses me.

https://github.com/evoshiun/Evotion/pull/2
Pages:
Jump to: