1
2
3
4
5
6
7
8
9
10
use halo2_proofs::circuit::AssignedCell;

use crate::util::word::WordLoHi;

/// Fixed by the spec
pub(super) const BYTE_POW_BASE: u64 = 256;
pub(super) const EMPTY_TX_ROW_COUNT: usize = 1;
pub(super) const N_BYTES_ONE: usize = 1;

pub(super) type AssignedByteCells<F> = (AssignedCell<F, F>, WordLoHi<AssignedCell<F, F>>);