Pages:
Author

Topic: [Launch] Molly Coin [TAB] [ Scrypt pow/pos ] [ 25 million TAB ] - page 4. (Read 9018 times)

legendary
Activity: 1218
Merit: 1002
Italian translation posted on Italian sub-forum.

Windows wallet scanned on virustotal : No virus found
file hash 2e455dc07eb9c20937d24216c05a6a468ef9b7fb1a40e17c3fc13d97a7e2e737
thanks
sr. member
Activity: 532
Merit: 250
wallet update from github.

dev please added pool http://tab.binpool.com/ in OP
full member
Activity: 213
Merit: 101
I have started to stake successfully  Grin
newbie
Activity: 11
Merit: 0
Just wanted to point out that POW never ends on this coin.  The last pow block check is commented out:

https://github.com/Tabcoin/TAB/blob/master/src/main.cpp#L2113

Code:
//if (IsProofOfWork() && nHeight > POW_CUTOFF_BLOCK)
        //return DoS(100, error("AcceptBlock() : No PoW block allowed anymore (height = %d)", nHeight));

It looks like that was inherited from BitcoinFast, in BitcoinFast's case it is setup to allow you to PoW mine 10 coins per block indefinitely.  In this coin its 500 forever.  Makes me want to go check what the PoW diff is on bitcoinfast lol Tongue

https://github.com/Tabcoin/TAB/blob/master/src/main.cpp#L962
Code:
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
int64 nSubsidy = 500 * COIN;

if (nHeight == 1)
{
nSubsidy = 250000 * COIN; // 250k coins
return nSubsidy + nFees;
}
    if (nHeight < 50000)
    {
        nSubsidy = 500 * COIN;  
    }
    return nSubsidy + nFees;
}
Note there's no check for the case when nHeight is >= 50000.

In any event, there's 50,000 pow blocks so plenty of time to make whatever tweaks... just pointing this out because I have some hash on this, and would like to see this coin go somewhere....anywhere...

There is "static const int POW_CUTOFF_BLOCK = 50000;"
I will update in some time next week, Thank for letting me know Smiley
hero member
Activity: 574
Merit: 500
( ͡° ͜ʖ ͡°)
Pool updated to the latest source!
full member
Activity: 213
Merit: 101
Just wanted to point out that POW never ends on this coin.  The last pow block check is commented out:

https://github.com/Tabcoin/TAB/blob/master/src/main.cpp#L2113

Code:
//if (IsProofOfWork() && nHeight > POW_CUTOFF_BLOCK)
        //return DoS(100, error("AcceptBlock() : No PoW block allowed anymore (height = %d)", nHeight));

It looks like that was inherited from BitcoinFast, in BitcoinFast's case it is setup to allow you to PoW mine 10 coins per block indefinitely.  In this coin its 500 forever.  Makes me want to go check what the PoW diff is on bitcoinfast lol Tongue

https://github.com/Tabcoin/TAB/blob/master/src/main.cpp#L962
Code:
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
int64 nSubsidy = 500 * COIN;

if (nHeight == 1)
{
nSubsidy = 250000 * COIN; // 250k coins
return nSubsidy + nFees;
}
    if (nHeight < 50000)
    {
        nSubsidy = 500 * COIN; 
    }
    return nSubsidy + nFees;
}
Note there's no check for the case when nHeight is >= 50000.

In any event, there's 50,000 pow blocks so plenty of time to make whatever tweaks... just pointing this out because I have some hash on this, and would like to see this coin go somewhere....anywhere...
newbie
Activity: 26
Merit: 0
apparently you are right sir,sadly, they launch it though,then worry about the "small details" like actually being able to do the POS....be abandoned within a week or so
newbie
Activity: 3
Merit: 0
Why can't someone release a coin with a working pre-configured wallet? Is that asking too much. I downloaded the wallet update,is there a new wallet? Thanks for being so very specific in your last reply.

yes you are asking too much  Wink Grin
newbie
Activity: 26
Merit: 0
Why can't someone release a coin with a working pre-configured wallet? Is that asking too much. I downloaded the wallet update,is there a new wallet? Thanks for being so very specific in your last reply.
newbie
Activity: 11
Merit: 0
Anyone else having wallet problems? Mine won't connect,any help greatly appreciated.
Check addition node at OP, thank.

Sorry could you be more specific?
what in detail must I do to get this wallet connected?thanks

Please download new wallet.
Delete your old file but keep wallet.dat, then resync it.
Thank.

Molly Molly.
newbie
Activity: 26
Merit: 0
Anyone else having wallet problems? Mine won't connect,any help greatly appreciated.
Check addition node at OP, thank.

Sorry could you be more specific?
what in detail must I do to get this wallet connected?thanks
newbie
Activity: 11
Merit: 0
Please update new wallet : http://www.mediafire.com/download/i1dw178f74q6856/UrgentMolly_update.zip
 
Pool can update the source code at github please.

Molly dev..........
newbie
Activity: 11
Merit: 0
This is my hack to drop BitcoinFast peers:

Added at line 2954 in main.cpp:

Code:
	if(pfrom->strSubVer.find("BitcoinFast") != std::string::npos)
{
    printf("disconnecting BitcoinFast node!\n");
    pfrom->Misbehaving(100);
    pfrom->fDisconnect = true;
    return false;
}

Its a workaround and there's apparently a ton of BitcoinFast peer addresses getting passed around now, but at least it is keeping the wallet clean.

Your welcome  Wink

Thank, please inbox me for bounty.
legendary
Activity: 999
Merit: 1000
Keep dropping synch, Molly don't fail me now in my time of need!
full member
Activity: 213
Merit: 101
This is my hack to drop BitcoinFast peers:

Added at line 2954 in main.cpp:

Code:
	if(pfrom->strSubVer.find("BitcoinFast") != std::string::npos)
{
    printf("disconnecting BitcoinFast node!\n");
    pfrom->Misbehaving(100);
    pfrom->fDisconnect = true;
    return false;
}

Its a workaround and there's apparently a ton of BitcoinFast peer addresses getting passed around now, but at least it is keeping the wallet clean.

Your welcome  Wink
sr. member
Activity: 532
Merit: 250
http://tab.binpool.com/ - our pool up and launch. spread hash on our pool
newbie
Activity: 11
Merit: 0
Anyone else having wallet problems? Mine won't connect,any help greatly appreciated.
Check addition node at OP, thank.
newbie
Activity: 26
Merit: 0
Anyone else having wallet problems? Mine won't connect,any help greatly appreciated.
hero member
Activity: 644
Merit: 500
Why coins always launched at night Smiley)
Properly another scam Smiley)



Not the whole world live in the same time zone as you do. When it's day for you, its night for me and visa versa
legendary
Activity: 1050
Merit: 1000
https://bitcointalk.org/index.php?topic=990965.new#new

chinese ,

my address: TW4CUEFKX3gNWNVeZdgKsP7mHBiu44mdjN

thanks dev ,
Pages:
Jump to: