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
1 changed files with 2 additions and 2 deletions

View File

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