diff options
author | Todd Stock <[email protected]> | 2020-11-21 12:30:06 -0500 |
---|---|---|
committer | Todd Stock <[email protected]> | 2020-11-21 12:30:06 -0500 |
commit | 7ce0588c5320894ddfae4069de45fe07d78b9f6f (patch) | |
tree | 213aa561f98772bddc44797d84d41121bc30b033 /ethclient | |
parent | 7ec00e3668f99df1d041b63ebcdfb718275a52b0 (diff) |
fix ptr
Diffstat (limited to 'ethclient')
-rw-r--r-- | ethclient/ethclient.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethclient/ethclient.go b/ethclient/ethclient.go index deafa54..6c1fa8d 100644 --- a/ethclient/ethclient.go +++ b/ethclient/ethclient.go @@ -101,7 +101,7 @@ type rpcBlock struct { Transactions []rpcTransaction `json:"transactions"` UncleHashes []common.Hash `json:"uncles"` Version uint32 `json:"version"` - BlockExtraData *[]byte `json:"blockExtraData"` + BlockExtraData []byte `json:"blockExtraData"` } func (ec *Client) getBlock(ctx context.Context, method string, args ...interface{}) (*types.Block, error) { @@ -166,7 +166,7 @@ func (ec *Client) getBlock(ctx context.Context, method string, args ...interface } txs[i] = tx.tx } - return types.NewBlockWithHeader(head).WithBody(txs, uncles, body.Version, body.BlockExtraData), nil + return types.NewBlockWithHeader(head).WithBody(txs, uncles, body.Version, &body.BlockExtraData), nil } // HeaderByHash returns the block header with the given hash. |