Skip to content
This repository was archived by the owner on Mar 23, 2021. It is now read-only.

Commit e56aa3f

Browse files
Fix trivial clippy lints
1 parent 6ad9ac5 commit e56aa3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/docker/bitcoin.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ use shiplift::ContainerOptions;
1616

1717
const IMAGE: &str = "coblox/bitcoin-core:0.17.0";
1818

19-
const USERNAME: &'static str = "bitcoin";
20-
const PASSWORD: &'static str = "t68ej4UX2pB0cLlGwSwHFBLKxXYgomkXyFyxuBmm2U8=";
19+
const USERNAME: &str = "bitcoin";
20+
const PASSWORD: &str = "t68ej4UX2pB0cLlGwSwHFBLKxXYgomkXyFyxuBmm2U8=";
2121

2222
#[derive(derive_more::Display, Copy, Clone)]
2323
#[display(fmt = "127.0.0.1:{}", port)]

src/docker/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub async fn start(
4545

4646
let container = docker.containers().get(&container.id);
4747

48-
let _ = container.start().compat().await?;
48+
container.start().compat().await?;
4949

5050
let _ = container
5151
.logs(

0 commit comments

Comments
 (0)