btcd源码中对tx的校验

Posted xgcode

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了btcd源码中对tx的校验相关的知识,希望对你有一定的参考价值。

  接上文,在这个函数中

 func (sm *SyncManager) handleTxMsg(tmsg *txMsg)

技术分享图片

   调用txMemPool成员函数ProcessTransaction对tx进行校验。在syncmanager对象中,txMemPool,顾名思义就是交易池。负责对交易的验证和管理。

    技术分享图片

    tx的数据结构如下:

   

// Tx defines a bitcoin transaction that provides easier and more efficient
// manipulation of raw transactions.  It also memoizes the hash for the
// transaction on its first access so subsequent accesses don‘t have to repeat
// the relatively expensive hashing operations.
type Tx struct {
	msgTx         *wire.MsgTx     // Underlying MsgTx
	txHash        *chainhash.Hash // Cached transaction hash
	txHashWitness *chainhash.Hash // Cached transaction witness hash
	txHasWitness  *bool           // If the transaction has witness data
	txIndex       int             // Position within a block or TxIndexUnknown
}

  在ProcessTransaction函数中调用了maybeAcceptTransaction,其中CheckTransactionSanity,主要对交易的输入个数和及交易的序列化大小、交易输入的前向节点,交易输出的比特币大小进行验证

技术分享图片

 

 

 

 

 

 

    

以上是关于btcd源码中对tx的校验的主要内容,如果未能解决你的问题,请参考以下文章

C51 modbus rtu crc下面这段代码校验结果总是不对,请高手指教,不胜感激!

Spring Tx源码解析(二)

在EORow或者VORow中对数据进行重复性校验

对 glDrawElements 的多次调用是不是比在 GLSL 中对每个片段执行相同的计算更有效?

内核中对uboot传参tags的校验

内核中对uboot传参tags的校验