quorum/ethchain/bloom9.go

45 lines
763 B
Go
Raw Normal View History

package ethchain
import (
"math/big"
"github.com/ethereum/go-ethereum/vm"
)
2014-10-29 06:20:42 -07:00
func CreateBloom(block *Block) []byte {
bin := new(big.Int)
2014-10-29 06:20:42 -07:00
bin.Or(bin, bloom9(block.Coinbase))
for _, tx := range block.Transactions() {
bin.Or(bin, LogsBloom(tx.logs))
}
return bin.Bytes()
}
func LogsBloom(logs []vm.Log) *big.Int {
bin := new(big.Int)
for _, log := range logs {
2014-10-27 03:44:28 -07:00
data := [][]byte{log.Address}
for _, topic := range log.Topics {
data = append(data, topic)
}
data = append(data, log.Data)
for _, b := range data {
bin.Or(bin, bloom9(b))
}
}
return bin
}
func bloom9(b []byte) *big.Int {
r := new(big.Int)
for _, i := range []int{0, 2, 4} {
t := big.NewInt(1)
2014-10-29 06:20:42 -07:00
r.Or(r, t.Lsh(t, uint(b[i+1])+256*(uint(b[i])&1)))
}
return r
}