Merge pull request #1751 from maran/fix_filters

core: Filter on addresses should work as an OR not an AND.
This commit is contained in:
Felix Lange 2015-09-01 20:10:27 +02:00
commit 1ffc5b0cfd
1 changed files with 3 additions and 3 deletions

View File

@ -131,12 +131,12 @@ done:
func includes(addresses []common.Address, a common.Address) bool {
for _, addr := range addresses {
if addr != a {
return false
if addr == a {
return true
}
}
return true
return false
}
func (self *Filter) FilterLogs(logs state.Logs) state.Logs {