mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
Remove unnecessary parentheses
This commit is contained in:
@@ -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,
|
||||||
}
|
}
|
||||||
}))
|
}))
|
||||||
|
|||||||
Reference in New Issue
Block a user