From 4385f5824c1d10478949177df5f9e508e246c1cf Mon Sep 17 00:00:00 2001 From: Santiago Carmuega Date: Mon, 28 Feb 2022 17:11:49 -0300 Subject: [PATCH] Release 0.6.1 pallas-primitives@0.6.1 Generated by cargo-workspaces --- examples/byron-decoder/src/main.rs | 12 ++++++------ pallas-primitives/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/byron-decoder/src/main.rs b/examples/byron-decoder/src/main.rs index d410a4a..ed33599 100644 --- a/examples/byron-decoder/src/main.rs +++ b/examples/byron-decoder/src/main.rs @@ -1,7 +1,7 @@ use net2::TcpStreamExt; use pallas::{ - ledger::primitives::{byron::Block, Fragment}, + ledger::primitives::{alonzo::BlockWrapper, byron::Block, Fragment}, network::{ miniprotocols::{ blockfetch::{BatchClient, Observer}, @@ -22,7 +22,7 @@ impl Observer for BlockPrinter { println!("{}", hex::encode(&body)); println!("----------"); - let block = Block::decode_fragment(body.as_slice()).unwrap(); + let block = BlockWrapper::decode_fragment(body.as_slice()).unwrap(); println!("{:?}", block); println!("===========\n\n"); @@ -45,13 +45,13 @@ fn main() { let range = ( Point::Specific( - 3240000, - hex::decode("b7096a881f77ced24bdd285758646c0e059545b54855bd3a2307ece518bd6317") + 16233554, + hex::decode("02707620f06fbf6daf2e56848e1b881df1a2b7d3d7ecd53cffc55151858a1de1") .unwrap(), ), Point::Specific( - 4492794, - hex::decode("5c196e7394ace0449ba5a51c919369699b13896e97432894b4f0354dce8670b6") + 16233737, + hex::decode("77a63ccd3b2b7a9f83686915884ff9c59aab4e00b12c92df46a904dc59e7b5fd") .unwrap(), ), ); diff --git a/pallas-primitives/Cargo.toml b/pallas-primitives/Cargo.toml index e092baa..6af0a60 100644 --- a/pallas-primitives/Cargo.toml +++ b/pallas-primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pallas-primitives" description = "Ledger primitives and cbor codec for the different Cardano eras" -version = "0.6.0" +version = "0.6.1" edition = "2021" repository = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"