Consistent use of ,s

This commit is contained in:
Gav Wood 2017-08-29 15:12:58 +02:00 committed by GitHub
parent 50495c6898
commit e3666457cf

View File

@ -113,7 +113,7 @@ impl Filter {
let from_matches = self.from_address.matches(&call.from); let from_matches = self.from_address.matches(&call.from);
let to_matches = self.to_address.matches(&call.to); let to_matches = self.to_address.matches(&call.to);
from_matches && to_matches from_matches && to_matches
} },
Action::Create(ref create) => { Action::Create(ref create) => {
let from_matches = self.from_address.matches(&create.from); let from_matches = self.from_address.matches(&create.from);
@ -131,7 +131,7 @@ impl Filter {
}, },
Action::Reward(ref reward) => { Action::Reward(ref reward) => {
self.to_address.matches(&reward.author) self.to_address.matches(&reward.author)
} },
} }
} }
} }