From 8a5205ac4c06d096e96bbde020b681cfe1ce3d98 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Thu, 6 Nov 2025 12:50:23 +0000 Subject: [PATCH] Include err for no surb tag or peer --- sdk/rust/nym-sdk/src/error.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdk/rust/nym-sdk/src/error.rs b/sdk/rust/nym-sdk/src/error.rs index 522344b9bb..3fb9f727a6 100644 --- a/sdk/rust/nym-sdk/src/error.rs +++ b/sdk/rust/nym-sdk/src/error.rs @@ -162,6 +162,9 @@ pub enum Error { #[error("no response id found in connect response")] IPRNoId, + + #[error("Could not find peer address or surb tag")] + MixStreamNoPeerOrSurb, } impl Error {