Bitcoin Forum
June 21, 2024, 10:48:27 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 »  All
  Print  
Author Topic: Evotion  (Read 27373 times)
k0er
Legendary
*
Offline Offline

Activity: 1134
Merit: 1068



View Profile
November 27, 2015, 08:32:23 AM
 #61

is this coin traded on any Exchange ?
https://yobit.net/en/trade/EVO/BTC

YANDEX
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
November 27, 2015, 11: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
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
November 27, 2015, 11: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
ALIVEcoin
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
November 27, 2015, 11: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 ?
bumbacoin
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
November 27, 2015, 12:04:20 PM
 #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 ?

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
November 27, 2015, 12:15:12 PM
 #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
bumbacoin
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
November 27, 2015, 12:40:13 PM
 #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.

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
November 27, 2015, 12:41:48 PM
 #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
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
November 27, 2015, 01:14:05 PM
 #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
Demo2004
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile WWW
November 27, 2015, 02:04:06 PM
 #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

trader19
Legendary
*
Offline Offline

Activity: 1232
Merit: 1001



View Profile WWW
November 27, 2015, 10:08:10 PM
 #71

POS is kicking in nicely, at "blocks" : 3752,"moneysupply" : 88058.02698894, from possible 120064.00 POW Coins, good job.

Join the Elastic revolution!  Elastic - The Decentralized Supercomputer
ELASTIC WEBSITE | NEW ANNOUNCEMENT THREAD | ELASTIC SLACK | ELASTIC FORUM
robertiv2
Sr. Member
****
Offline Offline

Activity: 405
Merit: 250


Yuancoin-Official


View Profile WWW
November 27, 2015, 10:11:15 PM
 #72

Good luck man Wink
 Wink

ETH : 0x8653709B51162bE8f20C5f503A9f86E28edaF56a - LTC : MRmut26CQTi1cBD5N7wRUiuPFMCDPB8kik - BTC : 37TxbDLUiE8CG7FdsTa1MFHMTUTtAvLesg -
 BCH : qpeph2sypawqhp630td6p93y2eujfu478ysf2298pn
crunck
Legendary
*
Offline Offline

Activity: 1176
Merit: 1005


crunck


View Profile
November 28, 2015, 12:31:12 PM
 #73








.
.7 BTC  WELCOME BONUS!..
███████████████████████████
██████████▀▀▄▄▄▄▄ ▄▀▀██████
█████████▄██████ ████ ▀████
██████▀▀ ▄▄▄▄ ▀▀███▀▄██ ███
████▀   ██████   ▀██████ ██
███ ▄▄▄████████▄▄▄ ██▄▄▄ ██
██ █████▀    ▀█████ ████ ██
██  ▀██        ███▀ ███ ███
██   ▄██▄    ▄██▄   █▀▄████
███ ▄████████████▄ ████████
████▄▀███▀▀▀▀███▀▄█████████
██████▄▄      ▄▄███████████
███████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████▄▄▄█████▄▄▄████████████████████████████████████████████████████
██████████▄█████▄█▄███▄█▄██████████▄██▀▀▀████████████████████████████████████████████████████
██████████████▀████▄████▀██████████████████████████▄█████▄██▄█████▄████▄████▄████▄████████
█████████████████▐█████▌███████████▄█████▀███▀▀████████▀▀▀▀█████▀▀▀██████▀▀███▀▀███████████
██████████████▄████▀████▄██████████████████▄▄▄▄▄███▄▄▄▄█████▄▄▄████████████████████████
████████████████▀█▀███▀█▀██████████▀███████▀█████████▀█████▀██▀█████▀███████████████████████
██████████████████████████████▀▀▀████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
███████████████████████████
████████▀▀  ▐█▌  ▀▀████████
██████▄     ▐█▌     ▄██████
████ ▀██▄▄███████▄▄██▀ ████
███    ██▀▀  ▄  ▀▀██    ███
██    ██   ▄███▄   ██    ██
████████  ███████  ████████
██    ██  ▀▀ █ ▀▀  ██    ██
███    ██▄▄ ▀▀▀ ▄▄██    ███
████ ▄██▀▀██████▀▀▀██▄ ████
██████▀     ▐█▌     ▀██████
████████▄▄  ▐█▌  ▄▄████████
███████████████████████████
.
.30+  ALTCOINS AVAILABLE..
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
November 28, 2015, 12:58:39 PM
 #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)
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
November 28, 2015, 02:12:10 PM
 #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
Splatters
Legendary
*
Offline Offline

Activity: 1232
Merit: 1000


★YoBit.Net★ 1400+ Coins Exchange


View Profile
November 28, 2015, 02:14:37 PM
 #76

rival of bitcoin made by a new account, it sounds like legit

I know why your pray will never be answered!
SushiNoTomato
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile
November 28, 2015, 03:31:13 PM
 #77

The coin is going well & PoS works fine too Smiley

Any ideas for marketing from the community ?
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
November 28, 2015, 04:33:16 PM
 #78

The coin is going well & PoS works fine too Smiley

Any ideas for marketing from the community ?

Maybe work on the source code Wink or start some twitter stuff.


Block 4749

105,467 Evo

out of what could of been

151,968 Evo

Grin
trader19
Legendary
*
Offline Offline

Activity: 1232
Merit: 1001



View Profile WWW
November 29, 2015, 01:02:34 AM
 #79

do we have a blockexplorer for EVO?

Join the Elastic revolution!  Elastic - The Decentralized Supercomputer
ELASTIC WEBSITE | NEW ANNOUNCEMENT THREAD | ELASTIC SLACK | ELASTIC FORUM
k0er
Legendary
*
Offline Offline

Activity: 1134
Merit: 1068



View Profile
November 29, 2015, 04:01:27 AM
 #80

do we have a blockexplorer for EVO?
so far, only the wallet has Block Browser

YANDEX
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 »  All
  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!