feat(traverse): Decode Conway block headers properly (#466)

This commit is contained in:
Andrew Westberg 2024-05-24 16:25:24 -04:00 committed by GitHub
parent 69de222dbe
commit 0c36f3803e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 31 additions and 31 deletions

View file

@ -2,7 +2,7 @@ use std::net::SocketAddr;
use std::path::Path;
use std::time::Duration;
use thiserror::Error;
use tracing::{debug, error, warn};
use tracing::{debug, error};
use tokio::net::{TcpListener, ToSocketAddrs};
@ -67,7 +67,7 @@ impl KeepAliveLoop {
loop {
interval.tick().await;
warn!("sending keepalive request");
debug!("sending keepalive request");
client
.keepalive_roundtrip()