We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ee9007 commit 1473f89Copy full SHA for 1473f89
.github/workflows/ci.yaml
@@ -28,7 +28,7 @@ jobs:
28
cargo:
29
- name: "Clippy"
30
cmd: clippy
31
- args: --workspace --all-features --tests -- -D clippy::all -W clippy::style
+ args: --workspace --all-features --tests -- -D warnings
32
rust: stable
33
- name: "Formatting"
34
cmd: fmt
relay_rpc/src/auth/cacao.rs
@@ -96,7 +96,7 @@ impl Cacao {
96
);
97
98
if let Some(statement) = &self.p.statement {
99
- write!(message, "{}\n", statement)?;
+ writeln!(message, "{}", statement)?;
100
}
101
102
write!(
0 commit comments