Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Commit

Permalink
trie: remove dead code (ethereum#20405)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjl493456442 authored and elizabethengelman committed Dec 20, 2019
1 parent 3ce1ffb commit e6a40ea
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions trie/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package trie

import (
"encoding/binary"
"errors"
"fmt"
"io"
Expand Down Expand Up @@ -272,19 +271,6 @@ func expandNode(hash hashNode, n node) node {
}
}

// trienodeHasher is a struct to be used with BigCache, which uses a Hasher to
// determine which shard to place an entry into. It's not a cryptographic hash,
// just to provide a bit of anti-collision (default is FNV64a).
//
// Since trie keys are already hashes, we can just use the key directly to
// map shard id.
type trienodeHasher struct{}

// Sum64 implements the bigcache.Hasher interface.
func (t trienodeHasher) Sum64(key string) uint64 {
return binary.BigEndian.Uint64([]byte(key))
}

// NewDatabase creates a new trie database to store ephemeral trie content before
// its written out to disk or garbage collected. No read cache is created, so all
// data retrievals will hit the underlying disk database.
Expand Down

0 comments on commit e6a40ea

Please sign in to comment.