From 8fe69a6dca24142b07770231bc300fc57f5d28d9 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Tue, 27 Sep 2016 12:04:22 -0600 Subject: [PATCH] More constant changes. --- src/consts.rs | 2 +- src/network.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/consts.rs b/src/consts.rs index 4be5cf0..35018a2 100644 --- a/src/consts.rs +++ b/src/consts.rs @@ -1,2 +1,2 @@ -pub const NETWORK_MAGIC: [u8; 8] = [0xee, 0xee, 0x1f, 0xcc, 0x1c, 0xee, 0xcc, 0x19]; +pub const NETWORK_MAGIC: [u8; 8] = [0xe8, 0xee, 0x1f, 0xcc, 0x1c, 0xee, 0xcc, 0x19]; pub const USE_DUMMY_CS: bool = false; diff --git a/src/network.rs b/src/network.rs index c081958..9b75bb2 100644 --- a/src/network.rs +++ b/src/network.rs @@ -23,8 +23,8 @@ use bincode::rustc_serialize::{encode_into, decode_from}; use rustc_serialize::{Decodable, Encodable}; pub const THREADS: usize = 8; -pub const DIRECTORY_PREFIX: &'static str = "/home/sean/mpc_trialrun/network/"; -const COORDINATOR_ADDR: &'static str = "52.41.255.202:65530"; +pub const DIRECTORY_PREFIX: &'static str = "/"; +const COORDINATOR_ADDR: &'static str = "mdr.z.cash:65530"; struct ConnectionHandler { peerid: [u8; 8],