quorum/trie/valuenode.go

16 lines
558 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 ValueNode struct {
trie *Trie
data []byte
}
func (self *ValueNode) Value() Node { return self } // Best not to call :-)
func (self *ValueNode) Val() []byte { return self.data }
func (self *ValueNode) Dirty() bool { return true }
2015-03-16 03:27:38 -07:00
func (self *ValueNode) Copy(t *Trie) Node { return &ValueNode{t, common.CopyBytes(self.data)} }
2014-11-18 03:02:13 -08:00
func (self *ValueNode) RlpData() interface{} { return self.data }
func (self *ValueNode) Hash() interface{} { return self.data }