1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00

Fix formatting

This commit is contained in:
Roman Zeyde 2019-01-21 14:18:27 +02:00
parent ec7b0b7378
commit 088eff5a86
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB

View File

@ -515,7 +515,9 @@ impl RPC {
info!("RPC server running on {}", addr);
loop {
let (stream, addr) = listener.accept().expect("accept failed");
stream.set_nonblocking(false).expect("failed to set connection as blocking");
stream
.set_nonblocking(false)
.expect("failed to set connection as blocking");
acceptor.send(Some((stream, addr))).expect("send failed");
}
});