fuel_tx/
consts.rs

1
2
3
4
5
6
7
use fuel_types::{
    bytes::WORD_SIZE,
    AssetId,
};

/// Size of balance entry, i.e. asset id and associated balance.
pub const BALANCE_ENTRY_SIZE: usize = AssetId::LEN + WORD_SIZE;