shortnode.go 708 Bytes
Newer Older
1
package trie
obscuren's avatar
obscuren committed
2 3 4 5 6 7 8 9

type ShortNode struct {
	trie  *Trie
	key   []byte
	value Node
}

func NewShortNode(t *Trie, key []byte, value Node) *ShortNode {
10
	return &ShortNode{t, []byte(CompactEncode(key)), value}
obscuren's avatar
obscuren committed
11 12 13 14 15 16 17
}
func (self *ShortNode) Value() Node {
	self.value = self.trie.trans(self.value)

	return self.value
}
func (self *ShortNode) Dirty() bool { return true }
18
func (self *ShortNode) Copy() Node  { return NewShortNode(self.trie, self.key, self.value) }
obscuren's avatar
obscuren committed
19 20 21 22 23 24 25 26 27

func (self *ShortNode) RlpData() interface{} {
	return []interface{}{self.key, self.value.Hash()}
}
func (self *ShortNode) Hash() interface{} {
	return self.trie.store(self)
}

func (self *ShortNode) Key() []byte {
28
	return CompactDecode(string(self.key))
obscuren's avatar
obscuren committed
29
}