aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/derive_sha.go
blob: 1897ff198f8d37bacb21f634d81cb1df80a02241 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package types

import (
    "github.com/ethereum/go-ethereum/ethutil"
    "github.com/ethereum/go-ethereum/trie"
)

type DerivableList interface {
    Len() int
    GetRlp(i int) []byte
}

func DeriveSha(list DerivableList) []byte {
    trie := trie.New(ethutil.Config.Db, "")
    for i := 0; i < list.Len(); i++ {
        trie.Update(string(ethutil.NewValue(i).Encode()), string(list.GetRlp(i)))
    }

    return trie.GetRoot()
}