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.
39 lines
624 B
39 lines
624 B
10 years ago
|
package ethchain
|
||
|
|
||
|
import "github.com/ethereum/go-ethereum/vm"
|
||
|
|
||
|
func CreateBloom(txs Transactions) uint64 {
|
||
|
var bin uint64
|
||
|
for _, tx := range txs {
|
||
|
bin |= logsBloom(tx.logs)
|
||
|
}
|
||
|
|
||
|
return bin
|
||
|
}
|
||
|
|
||
|
func logsBloom(logs []vm.Log) uint64 {
|
||
|
var bin uint64
|
||
|
for _, log := range logs {
|
||
|
data := []byte{log.Address}
|
||
|
for _, topic := range log.Topics {
|
||
|
data = append(data, topic.Bytes())
|
||
|
}
|
||
|
data = append(data, log.Data)
|
||
|
|
||
|
for _, b := range data {
|
||
|
bin |= bloom9(b)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return bin
|
||
|
}
|
||
|
|
||
|
func bloom9(b []byte) uint64 {
|
||
|
var r uint64
|
||
|
for _, i := range []int{0, 2, 4} {
|
||
|
r |= 1 << (b[i+1] + 256*(b[i]&1))
|
||
|
}
|
||
|
|
||
|
return r
|
||
|
}
|