good morning!!!!

Skip to content
Snippets Groups Projects
Commit 665a4464 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Generic hashing method

parent 48125a25
Branches
Tags
No related merge requests found
package ethchain
import (
"github.com/ethereum/go-ethereum/ethtrie"
"github.com/ethereum/go-ethereum/ethutil"
)
type DerivableList interface {
Len() int
GetRlp(i int) []byte
}
func DeriveSha(list DerivableList) []byte {
trie := ethtrie.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()
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment