diff --git a/clarity/src/vm/analysis/type_checker/v2_1/mod.rs b/clarity/src/vm/analysis/type_checker/v2_1/mod.rs
index 9bf8cb9e0..c9bcd88ea 100644
--- a/clarity/src/vm/analysis/type_checker/v2_1/mod.rs
+++ b/clarity/src/vm/analysis/type_checker/v2_1/mod.rs
@@ -15,7 +15,6 @@
// along with this program. If not, see .
pub mod contexts;
-//mod maps;
pub mod natives;
use stacks_common::types::StacksEpochId;
diff --git a/src/net/chat.rs b/src/net/chat.rs
index 1cd1f5b8c..88337f40b 100644
--- a/src/net/chat.rs
+++ b/src/net/chat.rs
@@ -1075,7 +1075,6 @@ impl ConversationP2P {
/// Handle an inbound NAT-punch request -- just tell the peer what we think their IP/port are.
/// No authentication from the peer is necessary.
fn handle_natpunch_request(&self, chain_view: &BurnchainView, nonce: u32) -> StacksMessage {
- // monitoring::increment_p2p_msg_nat_punch_request_received_counter();
monitoring::increment_msg_counter("p2p_nat_punch_request".to_string());
let natpunch_data = NatPunchData {
@@ -1244,7 +1243,6 @@ impl ConversationP2P {
chain_view: &BurnchainView,
message: &mut StacksMessage,
) -> Result