Skip to main content

iota_types/block/
block_id.rs

1// Copyright 2020-2021 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4impl_id!(
5    pub BlockId,
6    32,
7    "A block identifier, the BLAKE2b-256 hash of the block bytes. See <https://www.blake2.net/> for more information."
8);
9
10#[cfg(feature = "serde")]
11string_serde_impl!(BlockId);