Karry-Almond
Results
1
issues of
Karry-Almond
该书原文: transactions 交易列表: ***所有入选该区块的交易的哈希值列表***,每个哈希是一个 32字节 的数据。根据哈希值,可以用客户端在以太坊节点上唯一查询该笔交易 但是根据github的geth源码: [https://github.com/ethereum/go-ethereum/blob/master/core/types/block.go#L168](url) `type Block struct { header *Header uncles []*Header transactions Transactions ...` 以及 [https://github.com/ethereum/go-ethereum/blob/6c3513c0775e1e1e69a7c9e5c86255804fa3fb36/core/types/transaction.go#L51](url) `type Transaction struct { inner TxData // Consensus contents...