Skip to content

Commit

Permalink
core/types: remove unused field 'td' in Block (ethereum#25010)
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbabao authored and maoueh committed Nov 29, 2022
1 parent c237397 commit 0754a2a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions core/types/block.go
Expand Up @@ -202,10 +202,6 @@ type Block struct {
hash atomic.Value
size atomic.Value

// Td is used by package core to store the total difficulty
// of the chain up to and including the block.
td *big.Int

// These fields are used by package eth to track
// inter-peer block relay.
ReceivedAt time.Time
Expand All @@ -227,7 +223,7 @@ type extblock struct {
// are ignored and set to values derived from the given txs, uncles
// and receipts.
func NewBlock(header *Header, txs []*Transaction, uncles []*Header, receipts []*Receipt, hasher TrieHasher) *Block {
b := &Block{header: CopyHeader(header), td: new(big.Int)}
b := &Block{header: CopyHeader(header)}

// TODO: panic if len(txs) != len(receipts)
if len(txs) == 0 {
Expand Down

0 comments on commit 0754a2a

Please sign in to comment.