Compare regardless of length

This commit is contained in:
obscuren 2015-02-07 17:04:04 +01:00
parent 0fa6927171
commit c8147fb7b9
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ func (self *Filter) FilterLogs(logs state.Logs) state.Logs {
// Filter the logs for interesting stuff
Logs:
for _, log := range logs {
if len(self.address) > 0 && !bytes.Equal(self.address, log.Address()) {
if !bytes.Equal(self.address, log.Address()) {
continue
}