quorum/trie/hashnode.go

26 lines
604 B
Go
Raw Normal View History

2015-01-08 02:47:04 -08:00
package trie
2014-11-18 03:02:13 -08:00
2015-03-16 03:27:38 -07:00
import "github.com/ethereum/go-ethereum/common"
2014-11-18 03:02:13 -08:00
type HashNode struct {
key []byte
trie *Trie
2014-11-18 03:02:13 -08:00
}
func NewHash(key []byte, trie *Trie) *HashNode {
return &HashNode{key, trie}
2014-11-18 03:02:13 -08:00
}
func (self *HashNode) RlpData() interface{} {
return self.key
}
func (self *HashNode) Hash() interface{} {
return self.key
}
// These methods will never be called but we have to satisfy Node interface
func (self *HashNode) Value() Node { return nil }
func (self *HashNode) Dirty() bool { return true }
2015-03-16 03:27:38 -07:00
func (self *HashNode) Copy(t *Trie) Node { return NewHash(common.CopyBytes(self.key), t) }