From 6fb991a1b028fe51a79af2f55e6ff9f0a39e1137 Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Fri, 24 Jan 2020 14:54:27 +0000 Subject: [PATCH] mixnode: typo fix in comments --- mixnode/src/node/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixnode/src/node/mod.rs b/mixnode/src/node/mod.rs index 78f49f33f1..c8ce9ae783 100644 --- a/mixnode/src/node/mod.rs +++ b/mixnode/src/node/mod.rs @@ -121,7 +121,7 @@ impl PacketProcessor { } Ok(_) => return Err(MixProcessingError::ReceivedFinalHopError), Err(e) => { - warn!("Failed to unwrap Sphinx pakcet: {:?}", e); + warn!("Failed to unwrap Sphinx packet: {:?}", e); return Err(MixProcessingError::SphinxProcessingError); } };