mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
Remove unnecessary parentheses
This commit is contained in:
parent
a423c23c1e
commit
96a49d8a88
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,7 @@ impl Rpc {
|
||||||
.map(|(i, out)| {
|
.map(|(i, out)| {
|
||||||
Ok(Some([rpc_point(&out.key)?, rpc_point(&out.mask)?]).filter(|_| {
|
Ok(Some([rpc_point(&out.key)?, rpc_point(&out.mask)?]).filter(|_| {
|
||||||
match txs[i].prefix.timelock {
|
match txs[i].prefix.timelock {
|
||||||
Timelock::Block(t_height) => (t_height <= height),
|
Timelock::Block(t_height) => t_height <= height,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}))
|
}))
|
||||||
|
|
Loading…
Reference in a new issue