quorum/core/types/derive_sha.go

25 lines
514 B
Go
Raw Normal View History

package types
2014-10-29 02:29:22 -07:00
import (
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
2015-03-16 09:27:23 -07:00
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/rlp"
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
}
2015-03-16 09:27:23 -07:00
func DeriveSha(list DerivableList) common.Hash {
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++ {
key, _ := rlp.EncodeToBytes(i)
trie.Update(key, list.GetRlp(i))
2014-10-29 02:29:22 -07:00
}
2015-03-16 09:27:23 -07:00
return common.BytesToHash(trie.Root())
2014-10-29 02:29:22 -07:00
}