Skip to content

Commit

Permalink
Merge pull request #38 from EspressoSystems/ny/prep_for_tag_v_0_1_1
Browse files Browse the repository at this point in the history
Preparing to tag for 0.1.1
  • Loading branch information
nyospe authored Mar 1, 2024
2 parents 8b3c4c6 + 42a065b commit 1649f19
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 27 deletions.
57 changes: 35 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hs-builder-api"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -10,7 +10,7 @@ async-trait = "0.1"
clap = { version = "4.4", features = ["derive", "env"] }
derive_more = "0.99"
futures = "0.3"
hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.14" }
hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.20" }
serde = { version = "1.0", features = ["derive"] }
snafu = { version = "0.7", features = ["backtraces"] }
tagged-base64 = { git = "https://github.com/EspressoSystems/tagged-base64", tag = "0.3.4" }
Expand Down
4 changes: 2 additions & 2 deletions src/block_info.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use std::{hash::Hash, marker::PhantomData};

use hotshot_types::{
data::{VidScheme, VidSchemeTrait},
traits::{node_implementation::NodeType, signature_key::SignatureKey, BlockPayload},
utils::BuilderCommitment,
vid::VidCommitment,
};
use serde::{Deserialize, Serialize};

Expand Down Expand Up @@ -31,7 +31,7 @@ pub struct AvailableBlockData<I: NodeType> {
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq, Hash)]
#[serde(bound = "")]
pub struct AvailableBlockHeaderInput<I: NodeType> {
pub vid_commitment: <VidScheme as VidSchemeTrait>::Commit,
pub vid_commitment: VidCommitment,
pub signature: <<I as NodeType>::SignatureKey as SignatureKey>::PureAssembledSignatureType,
pub sender: <I as NodeType>::SignatureKey,
pub _phantom: PhantomData<I>,
Expand Down
2 changes: 1 addition & 1 deletion src/data_source.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use async_trait::async_trait;
use hotshot_types::{
data::VidCommitment,
traits::{node_implementation::NodeType, signature_key::SignatureKey},
utils::BuilderCommitment,
vid::VidCommitment,
};
use tagged_base64::TaggedBase64;

Expand Down

0 comments on commit 1649f19

Please sign in to comment.