Post
Topic
Board Announcements (Altcoins)
Re: |ANN| DAS - Decentralized and Secure. Private Send. Masternodes.
by
mg_home
on 22/08/2017, 09:06:24 UTC
As I can see in das.explorer at the http://das.explorerz.top:3002/block/0000000000089ac18dd60904abddf2345fbe7632b94b8a243646124a656a0055 the Height of this block 0000000000089ac18dd60904abddf2345fbe7632b94b8a243646124a656a0055 is 16281.

So, I think this fix ( http://telegra.ph/compile-DAS-wallet-on-clear-Ubuntu-1704-08-06 ) should be applied:
Code:
#### SOURCE FIX START ####

Search (F6 key) for:

( 20282, uint256S("0x0000000000089ac18dd60904abddf2345fbe7632b94b8a243646124a656a0055")),



Replace "20282" with "16281" so it looks like:

( 16281, uint256S("0x0000000000089ac18dd60904abddf2345fbe7632b94b8a243646124a656a0055")),

But if we look at the source in chainparams.cpp at the string number 157 we can see the following:

Code:
        checkpointData = (CCheckpointData) {
            boost::assign::map_list_of
            (  0, uint256S("0x00000a55dce11803cfa87cfab4498cba41ffe2acca8e3cda2b48e633c69fd84c"))
                        (  20282, uint256S("0x0000000000089ac18dd60904abddf2345fbe7632b94b8a243646124a656a0055")),
            1500983175, // * UNIX timestamp of last checkpoint block
            20282,    // * total number of transactions between genesis and last checkpoint
                        //   (the tx=... number in the SetBestChain debug.log lines)
            2800        // * estimated number of transactions per day after checkpoint
        };

So, if we should change 20282 to 16281 in the string
Code:
(  20282, uint256S("0x0000000000089ac18dd60904abddf2345fbe7632b94b8a243646124a656a0055")),
I think we should change 20282 to 16281 in the string
Code:
20282,    // * total number of transactions between genesis and last checkpoint
also.

But in the instruction at the http://telegra.ph/compile-DAS-wallet-on-clear-Ubuntu-1704-08-06 there is nothing about this fix. It is very strange.