From 0ea779e777846a5f67a0c39c70199a148774692f Mon Sep 17 00:00:00 2001 From: ardocrat Date: Fri, 1 May 2026 12:31:52 +0300 Subject: [PATCH] node: custom agent --- p2p/src/msg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/src/msg.rs b/p2p/src/msg.rs index 3103db09..d34759ff 100644 --- a/p2p/src/msg.rs +++ b/p2p/src/msg.rs @@ -41,7 +41,7 @@ use std::sync::Arc; use std::{fmt, thread, time::Duration}; /// Grin's user agent with current version -pub const USER_AGENT: &str = concat!("MW/Grin ", env!("CARGO_PKG_VERSION")); +pub const USER_AGENT: &str = concat!("MW/Grim ", env!("CARGO_PKG_VERSION"), "+"); /// Magic numbers expected in the header of every message const OTHER_MAGIC: [u8; 2] = [73, 43];