quorum/core/types/derive_sha.go

23 lines
432 B
Go
Raw Normal View History

package types
2014-10-29 02:29:22 -07:00
import (
2015-01-07 04:17:48 -08:00
"github.com/ethereum/go-ethereum/ethdb"
2014-10-29 02:29:22 -07:00
"github.com/ethereum/go-ethereum/ethutil"
2015-01-08 02:47:04 -08:00
"github.com/ethereum/go-ethereum/trie"
2014-10-29 02:29:22 -07:00
)
type DerivableList interface {
Len() int
GetRlp(i int) []byte
}
func DeriveSha(list DerivableList) []byte {
2015-01-07 04:17:48 -08:00
db, _ := ethdb.NewMemDatabase()
2015-01-08 02:47:04 -08:00
trie := trie.New(nil, db)
2014-10-29 02:29:22 -07:00
for i := 0; i < list.Len(); i++ {
2014-12-23 09:35:36 -08:00
trie.Update(ethutil.Encode(i), list.GetRlp(i))
2014-10-29 02:29:22 -07:00
}
2014-12-23 09:35:36 -08:00
return trie.Root()
2014-10-29 02:29:22 -07:00
}