mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-01-27 15:57:14 -05:00
Merge #441
441: Print peer ID on debog when starting CLI r=da-kami a=da-kami In order to add more context to the debug logs we print Bob's peer ID. This allows identifying peer related logs on the ASB. Co-authored-by: Daniel Karzel <daniel@comit.network>
This commit is contained in:
commit
6230a63c02
@ -174,6 +174,8 @@ async fn main() -> Result<()> {
|
|||||||
|
|
||||||
let alice_peer_id = db.get_peer_id(swap_id)?;
|
let alice_peer_id = db.get_peer_id(swap_id)?;
|
||||||
let mut swarm = swarm::bob(&seed, alice_peer_id)?;
|
let mut swarm = swarm::bob(&seed, alice_peer_id)?;
|
||||||
|
let bob_peer_id = swarm.local_peer_id();
|
||||||
|
tracing::debug!("Our peer-id: {}", bob_peer_id);
|
||||||
swarm
|
swarm
|
||||||
.behaviour_mut()
|
.behaviour_mut()
|
||||||
.add_address(alice_peer_id, alice_multiaddr);
|
.add_address(alice_peer_id, alice_multiaddr);
|
||||||
|
@ -19,8 +19,10 @@ where
|
|||||||
{
|
{
|
||||||
let identity = seed.derive_libp2p_identity();
|
let identity = seed.derive_libp2p_identity();
|
||||||
let transport = transport::build(&identity)?;
|
let transport = transport::build(&identity)?;
|
||||||
|
let peer_id = identity.public().into_peer_id();
|
||||||
|
tracing::debug!("Our peer-id: {}", peer_id);
|
||||||
|
|
||||||
let swarm = SwarmBuilder::new(transport, behaviour, identity.public().into_peer_id())
|
let swarm = SwarmBuilder::new(transport, behaviour, peer_id)
|
||||||
.executor(Box::new(|f| {
|
.executor(Box::new(|f| {
|
||||||
tokio::spawn(f);
|
tokio::spawn(f);
|
||||||
}))
|
}))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user