Browse Source
Remove unwrap
Spotted by clippy.
contact-taker-before-changing-cfd-state
Mariusz Klochowicz
3 years ago
No known key found for this signature in database
GPG Key ID: 470C865699C8D4D
1 changed files with
1 additions and
1 deletions
-
daemon/src/lib.rs
|
|
@ -226,7 +226,7 @@ where |
|
|
|
tokio::spawn( |
|
|
|
oracle_ctx |
|
|
|
.notify_interval(Duration::from_secs(5), || oracle::Sync) |
|
|
|
.unwrap(), |
|
|
|
.map_err(|e| anyhow::anyhow!(e))?, |
|
|
|
); |
|
|
|
|
|
|
|
let fan_out_actor = fan_out::Actor::new(&[&cfd_actor_addr, &monitor_addr]) |
|
|
|