Skip to content

Commit a34a257

Browse files
Format code using rustfmt 1.5.0
Github actions recently updated rustfmt to v1.5.0, this commit formats the code accordingly so that CI doesn't fail.
1 parent 6a15036 commit a34a257

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/wallet/mod.rs

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -589,14 +589,12 @@ where
589589
)?;
590590
let internal_requirements = internal_policy
591591
.map(|policy| {
592-
Ok::<_, Error>(
593-
policy.get_condition(
594-
params
595-
.internal_policy_path
596-
.as_ref()
597-
.unwrap_or(&BTreeMap::new()),
598-
)?,
599-
)
592+
Ok::<_, Error>(policy.get_condition(
593+
params
594+
.internal_policy_path
595+
.as_ref()
596+
.unwrap_or(&BTreeMap::new()),
597+
)?)
600598
})
601599
.transpose()?;
602600

0 commit comments

Comments
 (0)