mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
Add To to Receipt
This commit is contained in:
parent
a0631f3ebd
commit
5c8f66ebb4
1 changed files with 4 additions and 3 deletions
|
|
@ -68,9 +68,10 @@ type Receipt struct {
|
|||
|
||||
// Inclusion information: These fields provide information about the inclusion of the
|
||||
// transaction corresponding to this receipt.
|
||||
BlockHash common.Hash `json:"blockHash,omitempty"`
|
||||
BlockNumber *big.Int `json:"blockNumber,omitempty"`
|
||||
TransactionIndex uint `json:"transactionIndex"`
|
||||
BlockHash common.Hash `json:"blockHash,omitempty"`
|
||||
BlockNumber *big.Int `json:"blockNumber,omitempty"`
|
||||
TransactionIndex uint `json:"transactionIndex"`
|
||||
To common.Address `json:"to,omitempty"`
|
||||
}
|
||||
|
||||
type receiptMarshaling struct {
|
||||
|
|
|
|||
Loading…
Reference in a new issue