ThiagoCMC (OP)
Legendary
Offline
Activity: 1204
Merit: 1000
฿itcoin: Currency of Resistance!
|
|
February 14, 2012, 12:31:11 AM |
|
Guys,
I would like to setup IXCoin and I0coin using my P2Pool merged mining feature... But, where is these projects / clients / web sites!?
Thanks! Thiago
|
|
|
|
ThiagoCMC (OP)
Legendary
Offline
Activity: 1204
Merit: 1000
฿itcoin: Currency of Resistance!
|
|
February 14, 2012, 12:42:17 AM Last edit: February 14, 2012, 12:57:44 AM by ThiagoCMC |
|
Hi! I found this two here: I0coin: git clone git://github.com/kr105rlz/i0coin.git IXcoin: git clone https://github.com/ixcoin/ixcoin I'm using the correct sources for each?! Thanks! Thiago
|
|
|
|
ThiagoCMC (OP)
Legendary
Offline
Activity: 1204
Merit: 1000
฿itcoin: Currency of Resistance!
|
|
February 14, 2012, 12:58:10 AM |
|
The i0coin daemon does not work, I got:
i0coind: main.cpp:684: unsigned int GetNextWorkRequired(const CBlockIndex*): Assertion `pindexFirst' failed.
|
|
|
|
tiker
|
|
February 14, 2012, 02:00:50 AM |
|
|
|
|
|
doublec
Legendary
Offline
Activity: 1078
Merit: 1005
|
|
February 14, 2012, 02:22:12 AM |
|
I0coin: git clone git://github.com/kr105rlz/i0coin.git
This is ancient. See tiker's response for the correct location.
|
|
|
|
ThiagoCMC (OP)
Legendary
Offline
Activity: 1204
Merit: 1000
฿itcoin: Currency of Resistance!
|
|
February 14, 2012, 02:28:32 AM |
|
I0coin: git clone git://github.com/kr105rlz/i0coin.git
This is ancient. See tiker's response for the correct location. Thank you bro!! I'm already running your version... I'll update the P2Pool guide to enable i0coin merged mining too... ASAP...
|
|
|
|
ThiagoCMC (OP)
Legendary
Offline
Activity: 1204
Merit: 1000
฿itcoin: Currency of Resistance!
|
|
February 14, 2012, 01:00:58 PM |
|
I0coin: git clone git://github.com/kr105rlz/i0coin.git
This is ancient. See tiker's response for the correct location. doublec, Can you help me... My i0coin daemon dies after a few hours... My ~/.i0coin/debug.log shows: EXCEPTION: N5boost16exception_detail10clone_implINS0_19error_info_injectorINS_6system12system_errorEEEEE Host not found (authoritative) i0coin in ThreadOpenConnections()
What can be?! Thanks! Thiago
|
|
|
|
|
Nasakioto
Full Member
Offline
Activity: 172
Merit: 283
Thomas Nasakioto
|
|
February 19, 2012, 05:35:45 PM |
|
Ixcoin.org is back up
|
|
|
|
Coinbuck @ BTCLot
|
|
February 25, 2012, 01:02:48 PM |
|
Ixcoin.org is back up
You should fix the forum. It's full of spam bots
|
|
|
|
Zenitur
|
|
February 27, 2012, 07:04:14 PM |
|
Request static Linux build of ixcoin and i0coin.
|
|
|
|
Zenitur
|
|
February 27, 2012, 07:50:33 PM Last edit: February 27, 2012, 08:27:01 PM by Zenitur |
|
Error in source code. Like this error in Bitcoin 0.4.0: https://bitcointalk.org/index.php?topic=6020.0But it can't be fixed by solution from this page. kanotix@Kanotix:~/doublec-i0coin-58c6cd8/src$ make -f makefile.unix i0coind g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2 -o obj/nogui/auxpow.o auxpow.cpp
...
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2 -o obj/nogui/net.o net.cpp /usr/include/miniupnpc/upnpcommands.h:129: error: too many arguments to function ‘int UPNP_AddPortMapping(const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*)’ net.cpp:1100: error: at this point in file net.cpp: In function ‘void ThreadOpenConnections2(void*)’: net.cpp:1316: error: ‘INT64_MIN’ was not declared in this scope make: *** [obj/nogui/net.o] Error 1 kanotix@Kanotix:~/doublec-i0coin-58c6cd8/src$ With solution: kanotix@Kanotix:~/doublec-i0coin-58c6cd8/src$ make -f makefile.unix clean rm -f i0coin i0coind test_i0coin rm -f obj/*.o rm -f obj/nogui/*.o rm -f obj/test/*.o rm -f headers.h.gch kanotix@Kanotix:~/doublec-i0coin-58c6cd8/src$ make -f makefile.unix i0coind USE_UPNP= g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2 -o obj/nogui/auxpow.o auxpow.cpp
...
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2 -o obj/nogui/net.o net.cpp net.cpp: In function ‘void ThreadOpenConnections2(void*)’: net.cpp:1316: error: ‘INT64_MIN’ was not declared in this scope make: *** [obj/nogui/net.o] Error 1 kanotix@Kanotix:~/doublec-i0coin-58c6cd8/src$ Edit: fixed by commit from Bitcoin project: https://github.com/bitcoin/bitcoin/issues/637
|
|
|
|
doublec
Legendary
Offline
Activity: 1078
Merit: 1005
|
|
February 27, 2012, 08:07:22 PM |
|
Your version of miniupnp is incorrect. What version do you have installed? Try upgrading to the latest version.
|
|
|
|
Zenitur
|
|
February 27, 2012, 08:27:54 PM |
|
Your version of miniupnp is incorrect. What version do you have installed? Try upgrading to the latest version. I made it and saw another problem. Now it was compiled and downloading blocks. Thank you. Edit: I edited 3 files. net.cpp: 1316 - int64 nBest = INT64_MIN; + int64 nBest = std::numeric_limits<int64>::min(); util.cpp: 135:
- uint64 nRange = (UINT64_MAX / nMax) * nMax; + uint64 nRange = (std::numeric_limits<uint64>::max() / nMax) * nMax; wallet.cpp: 752:
- coinLowestLarger.first = INT64_MAX; + coinLowestLarger.first = std::numeric_limits<int64>::max();
|
|
|
|
markm
Legendary
Offline
Activity: 3010
Merit: 1121
|
|
February 29, 2012, 05:58:24 AM |
|
I am suprised ixcoin is still around. I have just under a thousand ixcoins. I can't even sell them
Great, maybe that means people will actually have some around to use in games instead of turning them all into fiat. I have actually seen a character named Ix on my "CrossCiv" server (reached via the client in my sig) who proposes to use Ix as his currency and maybe that of a whole civilisation of "Ixians"... -MarkM-
|
|
|
|
paladin_avatar16
Newbie
Offline
Activity: 19
Merit: 0
|
|
February 29, 2012, 07:29:01 AM |
|
I am suprised ixcoin is still around. I have just under a thousand ixcoins. I can't even sell them
ixcoin and i0coin can be traded at https://vircurex.com/ . The price is also rissing (even exploding? -relatively speaking).
|
|
|
|
Tomatocage
Legendary
Offline
Activity: 1554
Merit: 1222
brb keeping up with the Kardashians
|
|
February 29, 2012, 04:41:38 PM |
|
ixcoin and i0coin can be traded at https://vircurex.com/ . The price is also rissing (even exploding? -relatively speaking). WTF, why has the BTC price of Ixcoins more than doubled since I last looked at it?
|
|
|
|
Kumala
|
|
March 05, 2012, 05:46:37 AM |
|
Any I0Coin Explorer still around?
|
Hacked Account! Don't send any money.
|
|
|
kjlimo
Legendary
Offline
Activity: 2114
Merit: 1031
|
|
March 05, 2012, 06:38:00 AM |
|
ixcoin and i0coin can be traded at https://vircurex.com/ . The price is also rissing (even exploding? -relatively speaking). WTF, why has the BTC price of Ixcoins more than doubled since I last looked at it? No clue, but yes, both Ixcoin & I0coin have gone up by a factor of 10 since a week ago... something happening with these currencies?
|
|
|
|
markm
Legendary
Offline
Activity: 3010
Merit: 1121
|
|
March 05, 2012, 08:04:34 AM |
|
They allow merged mining so are basically free to mine. I use p2pool to mine bitcoins as primary and at the same time as freebies on the side I merged mine namecoin, devcoin, groupcoin, coiledcoin, i0coin and ixcoin. Before I got p2pool set up to do my own merged mining I used doublec's bitparking merged mining pool, which didn't include groupcoin and coiledcoin but did have the rest of them.
So basically whatever the price they happen to be selling for on any exchanges there will likely always be people picking them up free by merged mining if only for the practical test of merged mining and to use them in games and such.
-MarkM-
|
|
|
|
|