美文网首页比特币源码学习笔记
比特币源码阅读(判断交易是否为CoinBase)

比特币源码阅读(判断交易是否为CoinBase)

作者: 坠叶飘香 | 来源:发表于2018-08-08 19:32 被阅读0次

    src/primitives/transaction.h

    bool IsCoinBase() const
        {
            return (vin.size() == 1 && vin[0].prevout.IsNull()); //是否为CoinBase的判断方法
        }
    

    相关文章

      网友评论

        本文标题:比特币源码阅读(判断交易是否为CoinBase)

        本文链接:https://www.haomeiwen.com/subject/izoxbftx.html