码迷,mamicode.com
首页 > 其他好文 > 详细

比特币代码分析8 区块校验和确认

时间:2018-12-07 18:22:33      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:cto   ini   base   fir   oss   检查   alt   image   erro   

比特币节点接收到一个区块以后,都会进行校验和确认,如下参考网络图:
技术分享图片

关键看看对区块中的交易进行进一步的校验代码:
1.// First transaction must be coinbase, the rest must not be
2.if (vtx.empty() || !vtx[0].IsCoinBase())

  1. return error("CheckBlock() : first tx is not coinbase");
    4.for (int i = 1; i < vtx.size(); i++)
  2. if (vtx[i].IsCoinBase())
  3. return error("CheckBlock() : more than one coinbase");
  4. 8.// Check transactions 循环检查所有的交易,这一步骤很关键,所以交易不能随便改,大家都在检查
    9.foreach(const CTransaction& tx, vtx)

  5. if (!tx.CheckTransaction())
  6. return error("CheckBlock() : CheckTransaction failed");
  7. 13.// Check proof of work matches claimed amount
    14.if (CBigNum().SetCompact(nBits) > bnProofOfWorkLimit)

  8. return error("CheckBlock() : nBits below minimum work");
    16.if (GetHash() > CBigNum().SetCompact(nBits).getuint256())
  9. return error("CheckBlock() : hash doesn‘t match nBits");
  10. 19.// Check merkleroot
    20.if (hashMerkleRoot != BuildMerkleTree())

  11. return error("CheckBlock() : hashMerkleRoot mismatch");

比特币代码分析8 区块校验和确认

标签:cto   ini   base   fir   oss   检查   alt   image   erro   

原文地址:http://blog.51cto.com/13878196/2327600

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!