Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: conway primitives #290

Merged
merged 20 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pallas-network/src/miniprotocols/blockfetch/client.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use thiserror::Error;
use tracing::{debug, info, warn};
use tracing::{debug, warn};

use crate::miniprotocols::common::Point;
use crate::multiplexer;
Expand Down Expand Up @@ -138,7 +138,7 @@ impl Client {
pub async fn recv_while_busy(&mut self) -> Result<HasBlocks, ClientError> {
match self.recv_message().await? {
Message::StartBatch => {
info!("batch start");
debug!("batch start");
self.0 = State::Streaming;
Ok(Some(()))
}
Expand Down
2 changes: 1 addition & 1 deletion pallas-primitives/src/babbage/model.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Ledger primitives and cbor codec for the Alonzo era
//! Ledger primitives and cbor codec for the Babbage era
//!
//! Handcrafted, idiomatic rust artifacts based on based on the [Babbage CDDL](https://github.com/input-output-hk/cardano-ledger/blob/master/eras/babbage/test-suite/cddl-files/babbage.cddl) file in IOHK repo.

Expand Down
Loading