LOADING...
LOADING...
LOADING...
当前位置: 玩币族首页 > 区块链资讯 > 以太坊tx data

以太坊tx data

2019-12-25 嘿嘿嘿 来源:区块链网络

// core/types/transaction.go:38

type Transaction struct {

data txdata

// caches

hash atomic.Value

size atomic.Value

from atomic.Value

}

type txdata struct {

AccountNonce uint64

Price *big.Int

GasLimit uint64

Recipient *common.Address

Amount *big.Int

Payload []byte

// Signature values

V *big.Int

R *big.Int

S *big.Int

// This is only used when marshaling to JSON.

Hash *common.Hash `json:"hash" rlp:"-"`

}

—-

编译者/作者:嘿嘿嘿

玩币族申明:玩币族作为开放的资讯翻译/分享平台,所提供的所有资讯仅代表作者个人观点,与玩币族平台立场无关,且不构成任何投资理财建议。文章版权归原作者所有。

LOADING...
LOADING...