diff options
Diffstat (limited to 'src/util/config.rs')
-rw-r--r-- | src/util/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/config.rs b/src/util/config.rs index 5ce5aa17..ed17f13c 100644 --- a/src/util/config.rs +++ b/src/util/config.rs @@ -114,7 +114,7 @@ where D::Error::custom(format!("Unable to parse or resolve peer: {}", peer)) })?; for ip in addrs { - ret.push((pubkey.clone(), ip)); + ret.push((pubkey, ip)); } } |