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

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

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

func DeriveSha(list DerivableList) []byte {
    db, _ := ethdb.NewMemDatabase()
    trie := ptrie.New(nil, db)
    for i := 0; i < list.Len(); i++ {
        trie.Update(ethutil.Encode(i), list.GetRlp(i))
    }

    return trie.Root()
}