Pages:
Author

Topic: ✪✪✪ VIRTUAL COIN ✪✪✪ | P2P VIRTUAL MONEY | VC | X11 | ReLaunch: Date Feb 2017 ✪✪ - page 89. (Read 192532 times)

hero member
Activity: 882
Merit: 515
This time we are well prepared.  Smiley

Just use following updated checkpoint.cpp file for Linux users.
Code:
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#include // for 'map_list_of()'
#include

#include "checkpoints.h"

#include "main.h"
#include "uint256.h"

namespace Checkpoints
{
    typedef std::map MapCheckpoints;

    // How many times we expect transactions after the last checkpoint to
    // be slower. This number is a compromise, as it can't be accurate for
    // every system. When reindexing from a fast disk with a slow CPU, it
    // can be up to 20, while when downloading from a slow network with a
    // fast multicore CPU, it won't be much higher than 1.
    static const double fSigcheckVerificationFactor = 5.0;

    struct CCheckpointData {
        const MapCheckpoints *mapCheckpoints;
        int64 nTimeLastCheckpoint;
        int64 nTransactionsLastCheckpoint;
        double fTransactionsPerDay;
    };

    // What makes a good checkpoint block?
    // + Is surrounded by blocks with reasonable timestamps
    //   (no blocks before with a timestamp after, none after with
    //    timestamp before)
    // + Contains no strange transactions
    static MapCheckpoints mapCheckpoints =
        boost::assign::map_list_of
        (  0, uint256("0x00000496d303ae6e6ed9d474639f18b3fdf70166c8d89d1267bbf5fd640e1690"))
        (  1, uint256("0x000002bdf3c3a74682b7cb835e9a431832728ff056d2a859a1e191f3ff71c378"))
        (  50, uint256("0x00000b4d4f7dec7d1fcfa143cdbdeb9397b55d989d5da8a148b43fee07ad63d6"))
        (  100, uint256("0x000003d5654690e6ac39e6d6d3713fccdeb64a8ccb113c1434efdcaebb64f43e"))
        (  1611, uint256("0x0000000007c94b680ac77122eb882a8b45cd0b3d167e24112096c7b01e24bfb3"))
        (  1612, uint256("0x00000000047ec7d9318ecf5c128c15141a76105339098da97e614364fc2a09a9"))
        (  1999, uint256("0x0000000015c1f6fc25899bd13c8111a5255748622d46581c21e50dc2051a23a1"))
        (  2000, uint256("0x0000000000bbd180a7818896df255a09955393fe5432428e17b1cbae572e2a13"))
        (  3010, uint256("0x000000000e099f930eb1da8c7925112f7af6221bd5912dda4e2358eda9ff9964"))
        (  4300, uint256("0x000000016bf6bb1f040cc50578ae2897bd3754a7ec37120e8fe2fcb4dd9c7e6c"))
        (  4512, uint256("0x000000007ad8789e12c23e6e8482c672dacb1d3f2c120fea6d2047dd1055d579"))
        (  11177, uint256("0x000000004327606dee194e90cb1e5fabe9d4e9ce798e50a9c303a75b186cba2a"))

        ;

    static const CCheckpointData data = {
        &mapCheckpoints,
        1399264395, // * UNIX timestamp of last checkpoint block
        20762,       // * total number of transactions between genesis and last checkpoint
                    //   (the tx=... number in the SetBestChain debug.log lines)
        480.0       // * estimated number of transactions per day after checkpoint
    };

    static MapCheckpoints mapCheckpointsTestnet =
        boost::assign::map_list_of
        (   0, uint256("0x"))
        ;
    static const CCheckpointData dataTestnet = {
        &mapCheckpointsTestnet,
        1396890000,
        3000,
        30
    };

    const CCheckpointData &Checkpoints() {
        if (fTestNet)
            return dataTestnet;
        else
            return data;
    }

    bool CheckBlock(int nHeight, const uint256& hash)
    {
        if (fTestNet) return true; // Testnet has no checkpoints
        if (!GetBoolArg("-checkpoints", true))
            return true;

        const MapCheckpoints& checkpoints = *Checkpoints().mapCheckpoints;

        MapCheckpoints::const_iterator i = checkpoints.find(nHeight);
        if (i == checkpoints.end()) return true;
        return hash == i->second;
    }

    // Guess how far we are in the verification process at the given block index
    double GuessVerificationProgress(CBlockIndex *pindex) {
        if (pindex==NULL)
            return 0.0;

        int64 nNow = time(NULL);

        double fWorkBefore = 0.0; // Amount of work done before pindex
        double fWorkAfter = 0.0;  // Amount of work left after pindex (estimated)
        // Work is defined as: 1.0 per transaction before the last checkoint, and
        // fSigcheckVerificationFactor per transaction after.

        const CCheckpointData &data = Checkpoints();

        if (pindex->nChainTx <= data.nTransactionsLastCheckpoint) {
            double nCheapBefore = pindex->nChainTx;
            double nCheapAfter = data.nTransactionsLastCheckpoint - pindex->nChainTx;
            double nExpensiveAfter = (nNow - data.nTimeLastCheckpoint)/86400.0*data.fTransactionsPerDay;
            fWorkBefore = nCheapBefore;
            fWorkAfter = nCheapAfter + nExpensiveAfter*fSigcheckVerificationFactor;
        } else {
            double nCheapBefore = data.nTransactionsLastCheckpoint;
            double nExpensiveBefore = pindex->nChainTx - data.nTransactionsLastCheckpoint;
            double nExpensiveAfter = (nNow - pindex->nTime)/86400.0*data.fTransactionsPerDay;
            fWorkBefore = nCheapBefore + nExpensiveBefore*fSigcheckVerificationFactor;
            fWorkAfter = nExpensiveAfter*fSigcheckVerificationFactor;
        }

        return fWorkBefore / (fWorkBefore + fWorkAfter);
    }

    int GetTotalBlocksEstimate()
    {
        if (fTestNet) return 0; // Testnet has no checkpoints
        if (!GetBoolArg("-checkpoints", true))
            return 0;

        const MapCheckpoints& checkpoints = *Checkpoints().mapCheckpoints;

        return checkpoints.rbegin()->first;
    }

    CBlockIndex* GetLastCheckpoint(const std::map& mapBlockIndex)
    {
        if (fTestNet) return NULL; // Testnet has no checkpoints
        if (!GetBoolArg("-checkpoints", true))
            return NULL;

        const MapCheckpoints& checkpoints = *Checkpoints().mapCheckpoints;

        BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, checkpoints)
        {
            const uint256& hash = i.second;
            std::map::const_iterator t = mapBlockIndex.find(hash);
            if (t != mapBlockIndex.end())
                return t->second;
        }
        return NULL;
    }
}
full member
Activity: 182
Merit: 100
OK I've deleted all files and started back up to rescan but I get 0 connections now. Any nodes to connect to?
hero member
Activity: 882
Merit: 515
following IP caused this other fork, not sure who it belongs to.
37.187.241.168
hero member
Activity: 882
Merit: 515
ok, i just tried it, it is a quick fix took around 30 secs.

virtualcoind stop

delete all files expect
virtualcoin.conf
wallet.dat

virtualcoind -server -reindex
takes 30 secs.

should resolve it.


Is this for me to do, or everyone?

currently it seems only you got wrong fork.

But anyone can run. No harm, it just downloads & reindex blockchain, so any invalid blocks will be blocked by your client.
full member
Activity: 182
Merit: 100
ok, i just tried it, it is a quick fix took around 30 secs.

virtualcoind stop

delete all files expect
virtualcoin.conf
wallet.dat

virtualcoind -server -reindex
takes 30 secs.

should resolve it.


Is this for me to do, or everyone?
hero member
Activity: 882
Merit: 515
ok, i just tried it, it is a quick fix took around 30 secs.

virtualcoind stop

delete all files expect
virtualcoin.conf
wallet.dat

virtualcoind -server -reindex
takes 30 secs.

should resolve it.
full member
Activity: 182
Merit: 100
problem with minep.it ? i don't receive payout anymore...

Please don't say it's forked again!

What block is your wallets upto?

I don't think so, everything is good.


{
"version" : 90106,
"protocolversion" : 70002,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 11400,
"timeoffset" : 0,
"connections" : 14,
"proxy" : "",
"difficulty" : 0.59195195,
"testnet" : false,
"keypoololdest" : 1397688581,
"keypoolsize" : 102,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"errors" : ""
}


getblockhash 11400
00000000e90e547e4654caa6bed3693c43aa661485ea3c7713920d4b0746f30e



virtualcoind getinfo
{
    "version" : 90106,
    "protocolversion" : 70002,
    "walletversion" : 60000,
    "balance" : 7309.64575133,
    "blocks" : 11416,
    "timeoffset" : -1,
    "connections" : 1,
    "proxy" : "",
    "difficulty" : 1.82844149,
    "testnet" : false,
    "keypoololdest" : 1399298598,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00001000,
    "errors" : ""
}

virtualcoind getblockhash 11400
000000005a4ac4d25775c69f0b3ac845587a931e21ca0412b6ca0b54ed49e411

yes, looks like a fork, I scanned debug log & found it at 11177.
Upto 11,176 blockchain is same.

:-/

What do we need to do then?
hero member
Activity: 882
Merit: 515
problem with minep.it ? i don't receive payout anymore...

Please don't say it's forked again!

What block is your wallets upto?

I don't think so, everything is good.


{
"version" : 90106,
"protocolversion" : 70002,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 11400,
"timeoffset" : 0,
"connections" : 14,
"proxy" : "",
"difficulty" : 0.59195195,
"testnet" : false,
"keypoololdest" : 1397688581,
"keypoolsize" : 102,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"errors" : ""
}


getblockhash 11400
00000000e90e547e4654caa6bed3693c43aa661485ea3c7713920d4b0746f30e



virtualcoind getinfo
{
    "version" : 90106,
    "protocolversion" : 70002,
    "walletversion" : 60000,
    "balance" : 7309.64575133,
    "blocks" : 11416,
    "timeoffset" : -1,
    "connections" : 1,
    "proxy" : "",
    "difficulty" : 1.82844149,
    "testnet" : false,
    "keypoololdest" : 1399298598,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00001000,
    "errors" : ""
}

virtualcoind getblockhash 11400
000000005a4ac4d25775c69f0b3ac845587a931e21ca0412b6ca0b54ed49e411

yes, looks like a fork, I scanned debug log & found it at 11177.
Upto 11,176 blockchain is same.
full member
Activity: 182
Merit: 100
problem with minep.it ? i don't receive payout anymore...

Please don't say it's forked again!

What block is your wallets upto?

I don't think so, everything is good.


{
"version" : 90106,
"protocolversion" : 70002,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 11400,
"timeoffset" : 0,
"connections" : 14,
"proxy" : "",
"difficulty" : 0.59195195,
"testnet" : false,
"keypoololdest" : 1397688581,
"keypoolsize" : 102,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"errors" : ""
}


getblockhash 11400
00000000e90e547e4654caa6bed3693c43aa661485ea3c7713920d4b0746f30e



virtualcoind getinfo
{
    "version" : 90106,
    "protocolversion" : 70002,
    "walletversion" : 60000,
    "balance" : 7309.64575133,
    "blocks" : 11416,
    "timeoffset" : -1,
    "connections" : 1,
    "proxy" : "",
    "difficulty" : 1.82844149,
    "testnet" : false,
    "keypoololdest" : 1399298598,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00001000,
    "errors" : ""
}

virtualcoind getblockhash 11400
000000005a4ac4d25775c69f0b3ac845587a931e21ca0412b6ca0b54ed49e411
hero member
Activity: 588
Merit: 500
Will Bitcoin Rise Again to $60,000?
problem with minep.it ? i don't receive payout anymore...

Please don't say it's forked again!

What block is your wallets upto?

I have like 5-6 coins I never received either. Sad
sr. member
Activity: 473
Merit: 250
"Proof-of-Asset Protocol"
problem with minep.it ? i don't receive payout anymore...

Please don't say it's forked again!

What block is your wallets upto?

I don't think so, everything is good.


{
"version" : 90106,
"protocolversion" : 70002,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 11400,
"timeoffset" : 0,
"connections" : 14,
"proxy" : "",
"difficulty" : 0.59195195,
"testnet" : false,
"keypoololdest" : 1397688581,
"keypoolsize" : 102,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"errors" : ""
}


getblockhash 11400
00000000e90e547e4654caa6bed3693c43aa661485ea3c7713920d4b0746f30e

full member
Activity: 182
Merit: 100
problem with minep.it ? i don't receive payout anymore...

Please don't say it's forked again!

What block is your wallets upto?
legendary
Activity: 1526
Merit: 1012
problem with minep.it ? i don't receive payout anymore...
hero member
Activity: 938
Merit: 1001
Does anyone know what settings/drivers better to use for old cards 6750/6770 ?
Basicly use whatever was working the best with scrypt. Then you can play around with mem clock and engine clock, usually increasing the engine clock. Intensity may or may not effect your card. The other settings stick with the same from scrypt
I'd like to hear it from those who really owns them. I have a lot of cards - 6750, 6770, 7770, 7790, 7850, 7870, 7950, 7970, 270, 280, 290). However, only with 6750 and 6770 I have some problems with this algorithm.

I have 6950 and 5830 cards mining X11 just fine. If you are having problems, start from scratch. Delete the bins, set the threads, low intensity. Then bump settings up one at a time.
sr. member
Activity: 464
Merit: 252
Does anyone know what settings/drivers better to use for old cards 6750/6770 ?
Basicly use whatever was working the best with scrypt. Then you can play around with mem clock and engine clock, usually increasing the engine clock. Intensity may or may not effect your card. The other settings stick with the same from scrypt
I'd like to hear it from those who really owns them. I have a lot of cards - 6750, 6770, 7770, 7790, 7850, 7870, 7950, 7970, 270, 280, 290). However, only with 6750 and 6770 I have some problems with this algorithm.
sr. member
Activity: 252
Merit: 250
Does anyone know what settings/drivers better to use for old cards 6750/6770 ?
Basicly use whatever was working the best with scrypt. Then you can play around with mem clock and engine clock, usually increasing the engine clock. Intensity may or may not effect your card. The other settings stick with the same from scrypt
sr. member
Activity: 464
Merit: 252
Does anyone know what settings/drivers better to use for old cards 6750/6770 ?
ECF
newbie
Activity: 42
Merit: 0
 


Website | Twitter  | Bitcointalk

Hi,VirtualCoin Community

We have added your coin to ECOINFUND vote list.(http://www.ecoinfund.com/vote
an effective vote will cost 10 ECFC; repeating vote are allowed; the Exchange Market will be open as soon as the voting reach 1000.!
ECFC is the fee share program launched by Ecoinfund. Ecoinfund will commit 50% of trade revenue to ECFC program. (highest on market ECFC Details)

Here the ways of getting ECFC:
1. buy the ECFC through our ECFC/BTC or ECFC/LTC market.
2. taking part into our GIVEAWAY.

Big ECFC GIVEAWAY before 10.May
Tweet this green text on your own twitter account then recive 20 ECFC;
Quote
ecoinfund.com |New Exchange,multi-language support,Earn 20 ECFC(fee shares) by every retweet before 10 May,don't miss the train!
Pls post your twitter link and Ecoinfund ID on https://bitcointalksearch.org/topic/annexchange-ecoinfundmulti-language-alt-coin-exchange-official-thread-501030 ,you will get 20 ECFC!
hero member
Activity: 938
Merit: 1001
Follow us on Twitter!

VirtualCoin has been added to The CPU Coin List.

GPUs are only 4.6 times faster than modern CPUs mining X11 so you can still get some coin with your CPU. You can
 GPU and CPU mine at the same time! Just leave one CPU thread free.

Here is a How-To I have written to mine X11 coins -> http://cpucoinlist.com/how-to/how-to-cpu-mine-x11/
newbie
Activity: 50
Merit: 0
My wallet is synched it still does not let me solo mine from it says the pool is dead I've solo mined a dozen coins before.

Post your virtualcoin.conf  and your solo mining start up script here and I will tell you what your doing wrong.

Pages:
Jump to: