mina_p2p_messages/
common.rs

1use crate::{bigint, versioned::Versioned};
2
3pub type StateHashV1 = bigint::BigInt;
4pub type LedgerHashV1 = bigint::BigInt;
5pub type StateBodyHashV1 = bigint::BigInt;
6
7pub type StateHashV1Versioned = Versioned<StateHashV1, 1>;
8pub type StateBodyHashV1Versioned = Versioned<StateBodyHashV1, 1>;
9pub type LedgerHashV1Versioned = Versioned<LedgerHashV1, 1>;