forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
402 B
20 lines
402 B
package chain
|
|
|
|
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()
|
|
}
|
|
|