From: Matt Corallo Date: Mon, 22 Aug 2022 04:19:52 +0000 (+0000) Subject: Drop spurious comments X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=36b9b31fdaf35088dd35a6848a6faf5af7c0bd5e;p=rapid-gossip-sync-server Drop spurious comments --- diff --git a/src/persistence.rs b/src/persistence.rs index ef0a937..00ca70d 100644 --- a/src/persistence.rs +++ b/src/persistence.rs @@ -114,7 +114,7 @@ impl GossipPersister { let chain_hash_hex = hex_utils::hex_str(chain_hash); // start with the type prefix, which is already known a priori - let mut announcement_signed = Vec::new(); // vec![1, 0]; + let mut announcement_signed = Vec::new(); announcement.write(&mut announcement_signed).unwrap(); let result = client @@ -156,7 +156,7 @@ impl GossipPersister { let htlc_maximum_msat = update.contents.htlc_maximum_msat as i64; // start with the type prefix, which is already known a priori - let mut update_signed = Vec::new(); // vec![1, 2]; + let mut update_signed = Vec::new(); update.write(&mut update_signed).unwrap(); let result = client