访问内存位置数组中的数据

时间:2018-05-31 12:22:56

标签: go ethereum go-ethereum

我正在尝试将geth中的以下类型数组解析为“查看内部”并获取信息,但无法弄清楚如何执行此操作。 txs []*types.Transaction

此类型在geth的其他地方声明为

type Transaction struct {
    data    txdata
    hash    atomic.Value
    size    atomic.Value
    from    atomic.Value
}

我试图使用以下循环访问数据,但我似乎无法访问任何这些值。

    for _, tx := range *txs {
        fmt.Println(fmt.Sprintf("transactions in this block - hash: %s and data: ", tx.hash))
    }

任何人都可以指出我如何能够访问作为数组的内存位置中的数据

1 个答案:

答案 0 :(得分:1)

*types.Transaction有访问方法:

func (tx *Transaction) Hash() common.Hash
func (tx *Transaction) Data() []byte
func (tx *Transaction) Nonce() uint64
func (tx *Transaction) To() *common.Address

(还有更多)

阅读包文档并学习Go。小写字段名称未导出(私有)。