mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
parent
9d0641c2b8
commit
b087325761
1 changed files with 2 additions and 2 deletions
|
@ -224,8 +224,8 @@ impl ApiServer {
|
||||||
.then(|r| match r {
|
.then(|r| match r {
|
||||||
Ok(x) => Ok::<_, io::Error>(Some(x)),
|
Ok(x) => Ok::<_, io::Error>(Some(x)),
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
eprintln!("accept_async failed");
|
error!("accept_async failed: {}", e);
|
||||||
Err(e)
|
Ok(None)
|
||||||
}
|
}
|
||||||
}).filter_map(|x| x);
|
}).filter_map(|x| x);
|
||||||
let server = Server::builder(tls)
|
let server = Server::builder(tls)
|
||||||
|
|
Loading…
Reference in a new issue