mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-08 12:21:09 +03:00
fix: seed thread panicked on a try_read unwrap
This commit is contained in:
parent
48f9ec61f4
commit
697805752c
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ impl Peers {
|
||||||
debug!(
|
debug!(
|
||||||
LOGGER,
|
LOGGER,
|
||||||
"Successfully updated Dandelion relay to: {}",
|
"Successfully updated Dandelion relay to: {}",
|
||||||
peer.try_read().unwrap().info.addr
|
peer.read().unwrap().info.addr
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
None => debug!(LOGGER, "Could not update dandelion relay"),
|
None => debug!(LOGGER, "Could not update dandelion relay"),
|
||||||
|
|
Loading…
Reference in a new issue