博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
比特币代码分析8 区块校验和确认
阅读量:6656 次
发布时间:2019-06-25

本文共 967 字,大约阅读时间需要 3 分钟。

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

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

关键看看对区块中的交易进行进一步的校验代码:

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");

转载于:https://blog.51cto.com/13878196/2327600

你可能感兴趣的文章
myeclipse debug 工具栏不见了
查看>>
程序员成熟的标志
查看>>
How Google Backs Up The Internet Along With Exabytes Of Other Data
查看>>
js----预解析,作用域链
查看>>
leetcode 264. Ugly Number II
查看>>
如何创建Hiren的BootCD USB磁盘 -- 制作U盘启动盘
查看>>
lubuntu自动登录(lxde)
查看>>
Python--day39--管道和数据共享(面试可能会问到)
查看>>
第十二章 Python网络编程
查看>>
Caffe错误汇总与解决办法
查看>>
1079. Total Sales of Supply Chain (25)
查看>>
xcrun: error: unable to find utility "PackageApplication", not a developer tool or in PATH
查看>>
Oracle数据库中的左连接与右连接
查看>>
POJ-1742 Coins
查看>>
segmentController
查看>>
淘宝初始化代码 - 解决浏览器的兼容问题
查看>>
在win8 64位操作系统下Power Designer 16.5对MySQL5.6逆向工程的配置详解
查看>>
07.Javascript——入门高阶函数
查看>>
LeetCode – Refresh – Remove Duplicates from Sorted Array
查看>>
centos 7 中没有iptables 和service iptables save 指令使用失败问题解决方案
查看>>