Remove useless reference
This commit is contained in:
parent
62bfaf319c
commit
ddf494686c
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ fn allow_email(input: &Input, addr_lst: &HashSet<KeyedAddress>) -> bool {
|
|||
let address = input.get_coded_address();
|
||||
for addr_k in addr_lst {
|
||||
if addr_k == address {
|
||||
return addr_k.check_code(&address);
|
||||
return addr_k.check_code(address);
|
||||
}
|
||||
}
|
||||
true
|
||||
|
|
Loading…
Reference in a new issue