From f28eac7f94601fbc8663975c1bf33b5dddae87a0 Mon Sep 17 00:00:00 2001 From: Jedrzej Stuczynski Date: Thu, 12 Dec 2019 14:01:02 +0000 Subject: [PATCH] changed default destination address to be non-zero --- src/commands/run.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/run.rs b/src/commands/run.rs index 67926ccc00..c892fe6a08 100644 --- a/src/commands/run.rs +++ b/src/commands/run.rs @@ -92,7 +92,7 @@ fn route_from(topology: &Topology, route_len: usize) -> Vec { // TODO: where do we retrieve this guy from? fn get_destination() -> Destination { Destination { - address: [0u8; 32], - identifier: [0u8; 16], + address: [42u8; 32], + identifier: [1u8; 16], } }