Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. uint256S("00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"); //what this do ? end what put to here
  2.  
  3. consensus.nRuleChangeActivationThreshold = 6048; // 75% of 8064 //what this do end what put ?
  4. consensus.nMinerConfirmationWindow = 8064; // nPowTargetTimespan / nPowTargetSpacing * 4 //what this do ?
  5. consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].bit = 28; //what this setting's do ?
  6. consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nStartTime = 1199145601; // January 1, 2008
  7. consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nTimeout = 1230767999; // December 31, 2008
  8.  
  9. // Deployment of BIP68, BIP112, and BIP113.
  10. consensus.vDeployments[Consensus::DEPLOYMENT_CSV].bit = 0;
  11. consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = 1485561600; // January 28, 2017
  12. consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nTimeout = 1517356801; // January 31st, 2018
  13.  
  14. // Deployment of SegWit (BIP141, BIP143, and BIP147)
  15. consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].bit = 1;
  16. consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nStartTime = 1485561600; // January 28, 2017
  17. consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout = 1517356801; // January 31st, 2018
  18.  
  19. // The best chain should have at least this much work.
  20. consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000006805c7318ce2736c0"); //what this do end what put here ?
  21.  
  22. // By default assume that the signatures in ancestors of this block are valid.
  23. consensus.defaultAssumeValid = uint256S("0x1673fa904a93848eca83d5ca82c7af974511a7e640e22edc2976420744f2e56a"); //1155631 //what this do ?
  24.  
  25. nPruneAfterHeight = 100000; //what this do ?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement