changed default destination address to be non-zero

This commit is contained in:
Jedrzej Stuczynski
2019-12-12 14:01:02 +00:00
parent 26bd084862
commit f28eac7f94
+2 -2
View File
@@ -92,7 +92,7 @@ fn route_from(topology: &Topology, route_len: usize) -> Vec<SphinxNode> {
// 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],
}
}