mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01: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!(
|
||||
LOGGER,
|
||||
"Successfully updated Dandelion relay to: {}",
|
||||
peer.try_read().unwrap().info.addr
|
||||
peer.read().unwrap().info.addr
|
||||
);
|
||||
}
|
||||
None => debug!(LOGGER, "Could not update dandelion relay"),
|
||||
|
|
Loading…
Reference in a new issue