Prepend all libp2p protocols with "comit"

pull/173/head
Franck Royer 3 years ago
parent cfc5cb5206
commit a11e894b31
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

@ -42,19 +42,19 @@ pub struct EncryptedSignatureProtocol;
impl ProtocolName for Swap {
fn protocol_name(&self) -> &[u8] {
b"/xmr/btc/swap/1.0.0"
b"/comit/xmr/btc/swap/1.0.0"
}
}
impl ProtocolName for TransferProofProtocol {
fn protocol_name(&self) -> &[u8] {
b"/xmr/btc/transfer_proof/1.0.0"
b"/comit/xmr/btc/transfer_proof/1.0.0"
}
}
impl ProtocolName for EncryptedSignatureProtocol {
fn protocol_name(&self) -> &[u8] {
b"/xmr/btc/encrypted_signature/1.0.0"
b"/comit/xmr/btc/encrypted_signature/1.0.0"
}
}

@ -54,7 +54,7 @@ pub struct Behaviour {
impl Default for Behaviour {
fn default() -> Self {
Self {
inner: libp2p_async_await::Behaviour::new(b"/execution_setup/1.0.0"),
inner: libp2p_async_await::Behaviour::new(b"/comit/xmr/btc/execution_setup/1.0.0"),
}
}
}

@ -57,7 +57,7 @@ pub struct Behaviour {
impl Default for Behaviour {
fn default() -> Self {
Self {
inner: libp2p_async_await::Behaviour::new(b"/execution_setup/1.0.0"),
inner: libp2p_async_await::Behaviour::new(b"/comit/xmr/btc/execution_setup/1.0.0"),
}
}
}

Loading…
Cancel
Save