Pages:
Author

Topic: [ANN] CommunityCoin (COMM) | Pure PoS | Original COMM MultiPools Coming Soon - page 16. (Read 523781 times)

sr. member
Activity: 322
Merit: 250
addnode=106.187.96.176:55131
addnode=46.28.202.45:20801
addnode=4.209.33.80:20801


i've only got 3 connections atm.
i will see if i can do a bootstrap tomorrow.

thank you so much
we need a dev asap
we can use an address for donations from community and hire a dev
legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!
addnode=106.187.96.176:55131
addnode=46.28.202.45:20801
addnode=4.209.33.80:20801


i've only got 3 connections atm.
i will see if i can do a bootstrap tomorrow.
sr. member
Activity: 1622
Merit: 270
Undeads.com - P2E Runner Game
anyone could synchronize wallet?
sr. member
Activity: 322
Merit: 250
please someone with synced wallet make a bootstrap so we can make the network running again
full member
Activity: 157
Merit: 100
is there some one fixing the wallet?
i saw the block is over 525599 ,and it's 525631 now.
legendary
Activity: 1848
Merit: 1009
Next-Gen Trade Racing Metaverse
I miss those days, free distribution and stuff.  Cheesy
legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!
seems needs someone who can fix it.
a mandatory update, with slightly modified code, and newly compiled qt's.

it doesnt seem a major problem to fix. just a major problem that it's stuck.

just seems the switchover to the lessened pos reward is badly done.
full member
Activity: 157
Merit: 100
chains stuck Sad just cant quite generate block #525600
 
https://github.com/communitycoin/communitycoin/blob/d1db307f863da8d47aeb77d1ca8a0cb663d22fb5/src/main.cpp#L975
Code:
// miner's coin stake reward based on nBits and coin age spent (coin-days)
// simple algorithm, not depend on the diff
const int YEARLY_BLOCKCOUNT = 525600; // 365 * 1440
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight < YEARLY_BLOCKCOUNT)
nRewardCoinYear = 30 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (2 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = 20 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (3 * YEARLY_BLOCKCOUNT))


vs debug.log

CPUMiner : proof-of-stake block found 42efe8d2c5f27ee199ee111a3c41857a8ba3e12c4440a6f3e1535ae961c049ed
BitcoinMiner:
new block found  
  hash: 42efe8d2c5f27ee199ee111a3c41857a8ba3e12c4440a6f3e1535ae961c049ed  
target: 00000001a4290000000000000000000000000000000000000000000000000000
CBlock(hash=42efe8d2c5f27ee199ee111a3c41857a8ba3e12c4440a6f3e1535ae961c049ed, ver=4, hashPrevBlock=180c7274ff845399ec9d5aab0f88041b3fb2316be822500fdcdafcf8f47f6224, hashMerkleRoot=841fa10c28b3a34be0ddd0a31cb7f2e375a7819bce2756db5413e6711d17d5bd, nTime=1433249149, nBits=1d01a429, nNonce=0, vtx=2, vchBlockSig=3046022100832b35ce086ee5d20c6ea2f70f71aa2a7cb270b7d4a6043201464cf23974784b022100913e79fde55c21d47ccdf170a6ce30ef1ef6a2b9db5d58e4dd9ede3202b8ef84)
  Coinbase(hash=8f0feec0c2, nTime=1433249149, ver=1, vin.size=1, vout.size=1, nLockTime=0)
    CTxIn(COutPoint(0000000000, 4294967295), coinbase 03200508029d01062f503253482f)
    CTxOut(empty)
  Coinstake(hash=9ba09e4e01, nTime=1433249149, ver=1, vin.size=1, vout.size=2, nLockTime=0)
    CTxIn(COutPoint(15462b02cb, 1), scriptSig=304402201fdfe112a492418a)
    CTxOut(empty)
    CTxOut(nValue=846.891369, scriptPubKey=04f1b213ea4588dd2d54b078c5367c1fa9ade8edb1eeb31155ff9336639ee93771e76178123d94e9101ff5bc31735502000f01cc0d4ae2c6dd49b0e26111fb628f OP_CHECKSIG)
  vMerkleTree: 8f0feec0c2 9ba09e4e01 841fa10c28
generated 0.00
ERROR: ConnectInputs() : 9ba09e4e01 stake reward exceeded


also https://github.com/communitycoin/communitycoin/blob/d1db307f863da8d47aeb77d1ca8a0cb663d22fb5/src/main.cpp#L1399

Code:
   
       int64 nStakeReward = GetValueOut() - nValueIn;
            if (nStakeReward > GetProofOfStakeReward(nCoinAge, pindexBlock->nBits, nTime, pindexBlock->nHeight) - GetMinFee() + MIN_TX_FEE)
                return DoS(100, error("ConnectInputs() : %s stake reward exceeded", GetHash().ToString().substr(0,10).c_str()));
        }


so what we can do?
is it dead?
legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!
chains stuck Sad just cant quite generate block #525600
 
https://github.com/communitycoin/communitycoin/blob/d1db307f863da8d47aeb77d1ca8a0cb663d22fb5/src/main.cpp#L975
Code:
// miner's coin stake reward based on nBits and coin age spent (coin-days)
// simple algorithm, not depend on the diff
const int YEARLY_BLOCKCOUNT = 525600; // 365 * 1440
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight < YEARLY_BLOCKCOUNT)
nRewardCoinYear = 30 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (2 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = 20 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (3 * YEARLY_BLOCKCOUNT))


vs debug.log

CPUMiner : proof-of-stake block found 42efe8d2c5f27ee199ee111a3c41857a8ba3e12c4440a6f3e1535ae961c049ed
BitcoinMiner:
new block found 
  hash: 42efe8d2c5f27ee199ee111a3c41857a8ba3e12c4440a6f3e1535ae961c049ed 
target: 00000001a4290000000000000000000000000000000000000000000000000000
CBlock(hash=42efe8d2c5f27ee199ee111a3c41857a8ba3e12c4440a6f3e1535ae961c049ed, ver=4, hashPrevBlock=180c7274ff845399ec9d5aab0f88041b3fb2316be822500fdcdafcf8f47f6224, hashMerkleRoot=841fa10c28b3a34be0ddd0a31cb7f2e375a7819bce2756db5413e6711d17d5bd, nTime=1433249149, nBits=1d01a429, nNonce=0, vtx=2, vchBlockSig=3046022100832b35ce086ee5d20c6ea2f70f71aa2a7cb270b7d4a6043201464cf23974784b022100913e79fde55c21d47ccdf170a6ce30ef1ef6a2b9db5d58e4dd9ede3202b8ef84)
  Coinbase(hash=8f0feec0c2, nTime=1433249149, ver=1, vin.size=1, vout.size=1, nLockTime=0)
    CTxIn(COutPoint(0000000000, 4294967295), coinbase 03200508029d01062f503253482f)
    CTxOut(empty)
  Coinstake(hash=9ba09e4e01, nTime=1433249149, ver=1, vin.size=1, vout.size=2, nLockTime=0)
    CTxIn(COutPoint(15462b02cb, 1), scriptSig=304402201fdfe112a492418a)
    CTxOut(empty)
    CTxOut(nValue=846.891369, scriptPubKey=04f1b213ea4588dd2d54b078c5367c1fa9ade8edb1eeb31155ff9336639ee93771e76178123d94e9101ff5bc31735502000f01cc0d4ae2c6dd49b0e26111fb628f OP_CHECKSIG)
  vMerkleTree: 8f0feec0c2 9ba09e4e01 841fa10c28
generated 0.00
ERROR: ConnectInputs() : 9ba09e4e01 stake reward exceeded


also https://github.com/communitycoin/communitycoin/blob/d1db307f863da8d47aeb77d1ca8a0cb663d22fb5/src/main.cpp#L1399

Code:
     
       int64 nStakeReward = GetValueOut() - nValueIn;
            if (nStakeReward > GetProofOfStakeReward(nCoinAge, pindexBlock->nBits, nTime, pindexBlock->nHeight) - GetMinFee() + MIN_TX_FEE)
                return DoS(100, error("ConnectInputs() : %s stake reward exceeded", GetHash().ToString().substr(0,10).c_str()));
        }
legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!

i let my daemon die :p
so i'm just restarting and getting lots of that old checkpoints malarkey,
but i find that it generally fixes itself but i'm also restarting it every 2 hours which also seems to help when it does get stuck.

hopefully it'll be sunc fairly soon Cheesy
full member
Activity: 157
Merit: 100
Faircoin has reborn. Why not COMM?
FAIRCOIN didn't die...but COMM did. so dead!!!
hero member
Activity: 1162
Merit: 568
Anyway, be serious:

Does anyone have alive node to sync?  Huh
hero member
Activity: 1162
Merit: 568
Faircoin has reborn. Why not COMM?
sr. member
Activity: 322
Merit: 250
i really appreciate it if anyone here with synced wallet upload a bootstrap of blockchain
fortunately and surprisingly i have 1 active node but it's really really slow in syncing
newbie
Activity: 5
Merit: 0
Is anybody know site, where possible to check transaction in COMM network? I don't know workable block explorer for this abandoncoin...
newbie
Activity: 39
Merit: 0
pinko day hope all you commies see your kind of money is stinko

newbie
Activity: 49
Merit: 0
Hello, please consider voting in this poll:

https://bitcointalksearch.org/topic/poll-is-sub-billion-dollar-marketcap-any-indicator-of-success-3-days-only-1042097

It's an attempt to measure whether the altcoin community feels that marketcap is an indicator of success, and possibly discuss it.

I'm targeting ~500+ page ANN threads, and not trying to spam everything with bumps, so please kindly don't delete this unless I've accidentally posted it more than once in your thread.

All opinions are welcomed.
legendary
Activity: 2453
Merit: 1025
Energy coin master

Knip


i can send you this file.
give me your email address
Pm with email Send
legendary
Activity: 1512
Merit: 1000
So we still have some life here. Good news. Technologically COMM is very good coin. If someone could find a good practical use for it that would be a blessing.

COMM could be an excellent tipping coin on a community site.
full member
Activity: 157
Merit: 100
I loved this coin, maybe someone can take a similar approach to creating a new coin.

if it still works and you like it, why not consider taking it over
When I have EnergyCoin on track this coin is a candidate for application I have in mind.
I have only 1k of this coin and I want a large amount of donations in COMM to start-up again.
For now I have an other coin in mind for my community application in sandbox-project.
In PM a can give more information.


Hello Jan Smiley

I now have 3 nodes corrected and only have 1 month left to sync... So there's some life after all Smiley

communitycoin.conf:
Code:
addnode=95.80.58.15
addnode=87.211.164.253
addnode=188.18.29.203
addnode=5.67.71.132
addnode=85.25.201.132
addnode=82.138.34.183
addnode=46.28.202.45
addnode=37.48.87.10

i dont think there have any live node anymore.
i stuck at 525599 block,and it seems that everyone stuck here.
and i got a notice :checkpoint is too old!
i dont know what it means ,but i think this coin maybe already dead!
it would be great to see if someone can make it alive again.that would be a Miracle.
I tried do download and I'm stuck at 20487 block 3.9% done.
Somewone can provide a bootstrap.dat?

i can send you this file.
give me your email address
Pages:
Jump to: