chore: Merge Byron / Alonzo into single crate (#43)

This commit is contained in:
Santiago Carmuega 2022-02-09 07:19:17 -03:00 committed by GitHub
parent e41a99883c
commit fec96ffd99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
61 changed files with 120 additions and 335 deletions

View file

@ -1,14 +1,17 @@
use net2::TcpStreamExt;
use pallas::ledger::byron::*;
use pallas::ouroboros::network::blockfetch::{BatchClient, Observer};
use pallas::ouroboros::network::handshake::{
n2n::{Client, VersionTable},
MAINNET_MAGIC,
use pallas::{
ledger::primitives::{byron::Block, Fragment},
network::{
miniprotocols::{
blockfetch::{BatchClient, Observer},
handshake::n2n::{Client, VersionTable},
run_agent, Point, MAINNET_MAGIC,
},
multiplexer::Multiplexer,
},
};
use pallas::ouroboros::network::machines::primitives::Point;
use pallas::ouroboros::network::machines::run_agent;
use pallas::ouroboros::network::multiplexer::Multiplexer;
use std::net::TcpStream;
#[derive(Debug)]