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:
		
						commit
						1ffc5b0cfd
					
				| @ -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 { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user