Pages:
Author

Topic: ####[ANN][SCRYPT][0% PREMINE]CCOIN LAUNCHED!!! EARN SOME CCOINS NOW!#### - page 2. (Read 33912 times)

hero member
Activity: 781
Merit: 1000
Think this is dead in the water now.
Joe aint even doing his FRC pool.

   I can put a node online which has the blockchain from the point of the "fork" and share an addnode with you.
   The forkers were mining their chain to collect coin at low difficulty and there has been no wallet released here showing any work since the hand-off.

   May as well vote with your blockchain by consensus.

   Come find me in #CCoin on Freenode if you'd like the addnode entry.

Kind Regards,
-Chicago


will the old ccn[https://bitcointalk.org/index.php?topic=474570.0] wallets sync with that node added?

So, I will can start CCN wallet with some nodes too.
legendary
Activity: 1330
Merit: 1000
Think this is dead in the water now.
Joe aint even doing his FRC pool.

   I can put a node online which has the blockchain from the point of the "fork" and share an addnode with you.
   The forkers were mining their chain to collect coin at low difficulty and there has been no wallet released here showing any work since the hand-off.

   May as well vote with your blockchain by consensus.

   Come find me in #CCoin on Freenode if you'd like the addnode entry.

Kind Regards,
-Chicago


will the old ccn[https://bitcointalk.org/index.php?topic=474570.0] wallets sync with that node added?
sr. member
Activity: 592
Merit: 259
Think this is dead in the water now.
Joe aint even doing his FRC pool.

   I can put a node online which has the blockchain from the point of the "fork" and share an addnode with you.
   The forkers were mining their chain to collect coin at low difficulty and there has been no wallet released here showing any work since the hand-off.

   May as well vote with your blockchain by consensus.

   Come find me in #CCoin on Freenode if you'd like the addnode entry.

Kind Regards,
-Chicago
full member
Activity: 176
Merit: 110
I'm not in control of the code anymore but i passed it on, here's what i was told (I'm just a messenger in this)

"We need people testing that diff adjust fork. We want to fork ASAP tell them they need to give us a fork date, if not we will chose it."

Okay, thanks for the message WASPJoe.

It looks like block #311152 is a good block to fork because after getting the message to stop mining -- the chain is now frozen there at a difficulty of 2.57959286 and miners have ceased progress.
I am happy to test the new diff adjust fork and would be happy to join the new community of developers too. Where do they idle on Freenode?

If a date is not driven by consensus - - or other replies in this thread -- it would seem to be having the fork at block #311152 is better because that block was solved and the chain remained there following your announcement here on the forum to stop mining on the main chain.

Kind Regards,
-Chicago

I've actually been calling them on the phone getting updates. If you create a channel, I can come around for a little to check. I will try to get them to as well.

I'll propose that to them.

if you can build on linux build from this github to test the fork:
https://github.com/thecoinproject/ccoin/tree/ccoin2015team


Install bitcoin ppa and all needed requirements
Code:
sudo apt-add-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install libssl-dev
sudo apt-get install libdb-dev
sudo apt-get install libdb++-dev
sudo apt-get install libboost-dev
sudo apt-get install libboost-system-dev
sudo apt-get install libboost-filesystem-dev
sudo apt-get install libboost-program-options-dev
sudo apt-get install libboost-thread-dev
sudo apt-get install libgmp-dev
sudo apt-get install libmpfr-dev

sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb4.8++-dev libminiupnpc-dev



clone and set up
Code:
cd ~/
git clone https://github.com/thecoinproject/ccoin/tree/ccoin2015team
cd ~/ccoin/src
chmod -R 755 leveldb/

build daemon
Code:
cd ~/ccoin/src
make -f makefile.unix
strip ccoind
mv ccoind ~

ccoind is now in ~ run daemonized
Code:
./ccoind --daemon

make qt
Code:
qmake make

if that gives errors

Code:
qmake bitcoin-qt.pro

copy ccoin-qt to ~/
Code:
cp ccoin-qt ~/

run ccoin-qt
Code:
./ccoin-qt



old wallets should work.



Please make  a win .exe wallet

Think this is dead in the water now.
Joe aint even doing his FRC pool.
hero member
Activity: 781
Merit: 1000
I'm not in control of the code anymore but i passed it on, here's what i was told (I'm just a messenger in this)

"We need people testing that diff adjust fork. We want to fork ASAP tell them they need to give us a fork date, if not we will chose it."

Okay, thanks for the message WASPJoe.

It looks like block #311152 is a good block to fork because after getting the message to stop mining -- the chain is now frozen there at a difficulty of 2.57959286 and miners have ceased progress.
I am happy to test the new diff adjust fork and would be happy to join the new community of developers too. Where do they idle on Freenode?

If a date is not driven by consensus - - or other replies in this thread -- it would seem to be having the fork at block #311152 is better because that block was solved and the chain remained there following your announcement here on the forum to stop mining on the main chain.

Kind Regards,
-Chicago

I've actually been calling them on the phone getting updates. If you create a channel, I can come around for a little to check. I will try to get them to as well.

I'll propose that to them.

if you can build on linux build from this github to test the fork:
https://github.com/thecoinproject/ccoin/tree/ccoin2015team


Install bitcoin ppa and all needed requirements
Code:
sudo apt-add-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install libssl-dev
sudo apt-get install libdb-dev
sudo apt-get install libdb++-dev
sudo apt-get install libboost-dev
sudo apt-get install libboost-system-dev
sudo apt-get install libboost-filesystem-dev
sudo apt-get install libboost-program-options-dev
sudo apt-get install libboost-thread-dev
sudo apt-get install libgmp-dev
sudo apt-get install libmpfr-dev

sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb4.8++-dev libminiupnpc-dev



clone and set up
Code:
cd ~/
git clone https://github.com/thecoinproject/ccoin/tree/ccoin2015team
cd ~/ccoin/src
chmod -R 755 leveldb/

build daemon
Code:
cd ~/ccoin/src
make -f makefile.unix
strip ccoind
mv ccoind ~

ccoind is now in ~ run daemonized
Code:
./ccoind --daemon

make qt
Code:
qmake make

if that gives errors

Code:
qmake bitcoin-qt.pro

copy ccoin-qt to ~/
Code:
cp ccoin-qt ~/

run ccoin-qt
Code:
./ccoin-qt



old wallets should work.



Please make  a win .exe wallet
newbie
Activity: 19
Merit: 0
So what is going to happen with c-coin(CCNX) wallets? https://bitcointalksearch.org/topic/m.8717108

Yes, I am wondering the same. I have 7M C-Coin waiting to be converted.
legendary
Activity: 1330
Merit: 1000
So what is going to happen with c-coin(CCNX) wallets? https://bitcointalksearch.org/topic/m.8717108
sr. member
Activity: 592
Merit: 259
Hello CCoin Community,

    Freenode IRC channels have been registered for us to use beginning in 2015.

    You may join #CCoin and #CCoin-dev for support and ongoing development respectively.

    If you do not already have a full-blown IRC client, I recommend HexChat.
    Otherwise, you may simply use the Freenode Web IRC interface.
    http://webchat.freenode.net/

    Feel free to run a tipbot, or other service in the channel and if you want additional access just ask.

Kind Regards,
-Chicago
full member
Activity: 126
Merit: 100
I'm not in control of the code anymore but i passed it on, here's what i was told (I'm just a messenger in this)

"We need people testing that diff adjust fork. We want to fork ASAP tell them they need to give us a fork date, if not we will chose it."

Okay, thanks for the message WASPJoe.

It looks like block #311152 is a good block to fork because after getting the message to stop mining -- the chain is now frozen there at a difficulty of 2.57959286 and miners have ceased progress.
I am happy to test the new diff adjust fork and would be happy to join the new community of developers too. Where do they idle on Freenode?

If a date is not driven by consensus - - or other replies in this thread -- it would seem to be having the fork at block #311152 is better because that block was solved and the chain remained there following your announcement here on the forum to stop mining on the main chain.

Kind Regards,
-Chicago

I've actually been calling them on the phone getting updates. If you create a channel, I can come around for a little to check. I will try to get them to as well.

I'll propose that to them.

if you can build on linux build from this github to test the fork:
https://github.com/thecoinproject/ccoin/tree/ccoin2015team


Install bitcoin ppa and all needed requirements
Code:
sudo apt-add-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install libssl-dev
sudo apt-get install libdb-dev
sudo apt-get install libdb++-dev
sudo apt-get install libboost-dev
sudo apt-get install libboost-system-dev
sudo apt-get install libboost-filesystem-dev
sudo apt-get install libboost-program-options-dev
sudo apt-get install libboost-thread-dev
sudo apt-get install libgmp-dev
sudo apt-get install libmpfr-dev

sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb4.8++-dev libminiupnpc-dev



clone and set up
Code:
cd ~/
git clone https://github.com/thecoinproject/ccoin/tree/ccoin2015team
cd ~/ccoin/src
chmod -R 755 leveldb/

build daemon
Code:
cd ~/ccoin/src
make -f makefile.unix
strip ccoind
mv ccoind ~

ccoind is now in ~ run daemonized
Code:
./ccoind --daemon

make qt
Code:
qmake make

if that gives errors

Code:
qmake bitcoin-qt.pro

copy ccoin-qt to ~/
Code:
cp ccoin-qt ~/

run ccoin-qt
Code:
./ccoin-qt



old wallets should work.

sr. member
Activity: 592
Merit: 259
I'm not in control of the code anymore but i passed it on, here's what i was told (I'm just a messenger in this)

"We need people testing that diff adjust fork. We want to fork ASAP tell them they need to give us a fork date, if not we will chose it."

Okay, thanks for the message WASPJoe.

It looks like block #311152 is a good block to fork because after getting the message to stop mining -- the chain is now frozen there at a difficulty of 2.57959286 and miners have ceased progress.
I am happy to test the new diff adjust fork and would be happy to join the new community of developers too. Where do they idle on Freenode?

If a date is not driven by consensus - - or other replies in this thread -- it would seem to be having the fork at block #311152 is better because that block was solved and the chain remained there following your announcement here on the forum to stop mining on the main chain.

Kind Regards,
-Chicago
full member
Activity: 126
Merit: 100
The block for the fork needs to be announced in advanced.

There are miners on the main chain and this is a community coin.

The main chain is at height 311152 and has been moving all day.

Kindly don't ninja hard fork.
I'm not in control of the code anymore but i passed it on, here's what i was told (I'm just a messenger in this)

"We need people testing that diff adjust fork. We want to fork ASAP tell them they need to give us a fork date, if not we will chose it."
sr. member
Activity: 592
Merit: 259
The block for the fork needs to be announced in advanced.

There are miners on the main chain and this is a community coin.

The main chain is at height 311152 and has been moving all day.

Kindly don't ninja hard fork.
full member
Activity: 126
Merit: 100
they also said
"if many are mining, please have them stop and wait, we can fork at a later block but we need to have them stop mining for now"
full member
Activity: 126
Merit: 100
The ccoin 2015 team is going to be continuing this project and as I am able I will help.
their release is beta, and no windows wallet is yet created but they are working on it

    At which block number will the hardfork occur?
    If we're using the v1.0.0.0 wallet, are we mining the wrong chain presently?

Kind Regards,
-Chicago

the current block for the fork is past, it was block 309724.

From the team (since they are busy coding)
"The old chain we are not sure if anyone is mining. If others are mining on the old chain, have them stop. Have them post block hash they found and wallet address associated with those blocks, we will try to see what to do. Please do not mine on the old chain"

Another said,
"We are near a new windows wallet so say stop mining the old chain now, use the new chain branch. We have a copy of the chain we can check if they are truthful. have them use ccoin2015team branch github"

tl;dr
use this branch/tree if you are making from source (https://github.com/thecoinproject/ccoin/tree/ccoin2015team), windows wallet is being built now. if you are on the old chain, they have the blockchain and can verify you mined it if you give them hashes they requested and Stop mining the old chain.


sr. member
Activity: 592
Merit: 259
The ccoin 2015 team is going to be continuing this project and as I am able I will help.
their release is beta, and no windows wallet is yet created but they are working on it

    At which block number will the hardfork occur?
    If we're using the v1.0.0.0 wallet, are we mining the wrong chain presently?

Kind Regards,
-Chicago
full member
Activity: 126
Merit: 100
I have handed over the ccoin code I have to the ccoin 2015 team, repository is here https://github.com/thecoinproject/ccoin/tree/ccoin2015team

the code was brought up to latest litecoin and added freicoin diffadjustment hardfork.

The ccoin 2015 team is going to be continuing this project and as I am able I will help.

the ccoin 2015 team will require additional coders to give of their time, they have a new alert key and have given me a copy of the key if needed.

Electrum wallet codes are being updated by the ccoin 2015 team for release in coming days.

their release is beta, and no windows wallet is yet created but they are working on it




many issues beyond my control right now are requiring i hand this project over to this team who i trust will do their best to make ccoin better
legendary
Activity: 1330
Merit: 1000
So dead again ?


Looks like it.

It's been 2.5mths since WaspJoe last posted and 9mths for Beastlymac.

Can we just please have a post from WaspJoe or Beastlymac confirming if this project is dead in the water or not.




waspjoe was on today and mammix is still active with boost coin
full member
Activity: 176
Merit: 110
So dead again ?


Looks like it.

It's been 2.5mths since WaspJoe last posted and 9mths for Beastlymac.

Can we just please have a post from WaspJoe or Beastlymac confirming if this project is dead in the water or not.
legendary
Activity: 2020
Merit: 1041
legendary
Activity: 1330
Merit: 1000
I have some c-coin for sale if anyone is interested
Pages:
Jump to: