Pages:
Author

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

full member
Activity: 182
Merit: 100
No it's OK. I can connect but it takes a while - and then loses connection every so often. I just think there should be some node servers to make it more stable.
hero member
Activity: 882
Merit: 515
I think we need nodes setting up. I can't get connection to the wallet.

ok, try this.

Download updated blockchain:https://mega.co.nz/#!CYgCnJDS!0HkzNOV64xLMpemzuTpXbRH9EQNZkKTDnu5XuLE4kIw
dump it into your virtualcoin folder.

Make sure it is not running.

Now rerun it using "-reindex"


Also, please update your checkpoint.cpp file with following code & also change clientversion.h to 9 1 7
recompile it & then run.

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"))
        (  12485, uint256("0x00000000fc6146156e1edcc05017231e0c9262f1ab4a661b669381a54e273d55"))
        ;

    static const CCheckpointData data = {
        &mapCheckpoints,
        1399503889 , // * UNIX timestamp of last checkpoint block
        22321,    // * total number of transactions between genesis and last checkpoint
                    //   (the tx=... number in the SetBestChain debug.log lines)
        480     // * 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
I think we need nodes setting up. I can't get connection to the wallet.
hero member
Activity: 882
Merit: 515
Virtual Coin Windows Client 9.1.7 Released

Date Released: May 8th, 2014 GMT

* Additional checkpoints added


This is an Optional Update

DOWNLOAD LOCATION:

Package:
https://mega.co.nz/#!3M4h2I5C!rpdbPL7PibVooWYVa6i7gjiHdUAmHNPkhc7s7Wtet7Q



hero member
Activity: 882
Merit: 515
Hey guys, is the difficulty supposed to be 0.2? I found a block but a few minutes later it disappeared.

{
"version" : 90106,
"protocolversion" : 70002,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 12483,
"timeoffset" : 0,
"connections" : 5,
"proxy" : "",
"difficulty" : 0.78104330,
"testnet" : false,
"keypoololdest" : 1397688581,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"errors" : ""
}

Valid blockchain.

Do not use any pool that is not running on valid chain.


CROSS CHECK:
Code:
getblockhash 12485
00000000fc6146156e1edcc05017231e0c9262f1ab4a661b669381a54e273d55
legendary
Activity: 1526
Merit: 1001
Crypto since 2014
Hey guys, is the difficulty supposed to be 0.2? I found a block but a few minutes later it disappeared.
sr. member
Activity: 294
Merit: 250
Hey, v.coinz

I think we have problems again, for sure  Undecided

I only mine in P2Pool and no coins have reached my wallet since two days ago, even though they're supposed to.

Here's my allegedly sync'd wallet info:
{
"version" : 90106,
"protocolversion" : 70002,
"walletversion" : 60000,
"balance" : xxxxxxxx, (edited)
"blocks" : 12046,
"timeoffset" : 4,
"connections" : 4,
"proxy" : "",
"difficulty" : 0.82021277,
"testnet" : false,
"keypoololdest" : 1397401502,
"keypoolsize" : 100,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"unlocked_until" : 0,
"errors" : ""
}
legendary
Activity: 1932
Merit: 1003
What's going on here? Difficulty was like 7-8 a couple days ago.
sr. member
Activity: 252
Merit: 250
So what's up with the forking? Minep.it sent me ~500 coins and I haven't received anything in my wallet
legendary
Activity: 1526
Merit: 1001
Crypto since 2014
following IP caused this other fork, not sure who it belongs to.
37.187.241.168

Seems to be someone from France
http://en.utrace.de/ip-address/37.187.241.168
hero member
Activity: 882
Merit: 515
Still 0

Currently on block 11516

just run hash check again.

getblockhash 11177
000000004327606dee194e90cb1e5fabe9d4e9ce798e50a9c303a75b186cba2a

better yet, check my last post for updated checkpoint.cpp file.
https://bitcointalksearch.org/topic/m.6558788


dump into src folder & recompile it. takes 15 secs, as it only needs to rebuild checkpoint.o

hero member
Activity: 882
Merit: 515
ok mega is down.

so uploaded peers.dat 
Code:
http://www.sendspace.com/file/7n1cqm
stop virtualcoind
just overwrite it in virtualcoin folder.
start virtualcoind



Should works for both Windows & Linux OS.
hero member
Activity: 882
Merit: 515
ok mega is down.

so uploaded peers.dat 
Code:
http://www.sendspace.com/file/7n1cqm
stop virtualcoind
just overwrite it in virtualcoin folder.
start virtualcoind

full member
Activity: 182
Merit: 100
hero member
Activity: 882
Merit: 515
ok run this...

virtualcoind addnode 174.88.158.161 add
virtualcoind addnode 108.47.60.42 add
virtualcoind addnode 178.249.125.94 add
virtualcoind addnode 50.98.74.86 add

full member
Activity: 182
Merit: 100
Still nothing

ok do you have any add node in virtualcoin.conf?
if yes, remove it.

can you post your getinfo



No nodes in conf.

virtualcoind getinfo
{
    "version" : 90106,
    "protocolversion" : 70002,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 0,
    "timeoffset" : 0,
    "connections" : 0,
    "proxy" : "",
    "difficulty" : 0.00024414,
    "testnet" : false,
    "keypoololdest" : 1397821358,
    "keypoolsize" : 102,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00001000,
    "errors" : ""
}
hero member
Activity: 882
Merit: 515
Still nothing

ok do you have any add node in virtualcoin.conf?
if yes, remove it.

can you post your getinfo

full member
Activity: 182
Merit: 100
hero member
Activity: 882
Merit: 515
full member
Activity: 182
Merit: 100
Pages:
Jump to: