fix: address multiple compilation issues
- Revert thiserror to 1.0.69 (fatality 0.1.1 incompatible with 2.x) - Fix MerkleProofError format string (Rust 2024 compatibility) - Fix deprecated websocket::framed::WsConfig -> Config in telemetry - Fix zombienet-sdk import: sc_chain_spec -> pezsc_chain_spec
This commit is contained in:
@@ -32,7 +32,7 @@ pub(crate) fn initialize_transport() -> Result<WsTrans, io::Error> {
|
||||
let transport = {
|
||||
let tcp_transport = libp2p::tcp::tokio::Transport::new(libp2p::tcp::Config::new());
|
||||
let inner = libp2p::dns::tokio::Transport::system(tcp_transport)?;
|
||||
libp2p::websocket::framed::WsConfig::new(inner).and_then(|connec, _| {
|
||||
libp2p::websocket::framed::Config::new(inner).and_then(|connec, _| {
|
||||
let connec = connec
|
||||
.with(|item| {
|
||||
let item = libp2p::websocket::framed::OutgoingData::Binary(item);
|
||||
|
||||
Reference in New Issue
Block a user