fuel_tx/
consts.rs

1use fuel_types::{
2    bytes::WORD_SIZE,
3    AssetId,
4};
5
6/// Size of balance entry, i.e. asset id and associated balance.
7pub const BALANCE_ENTRY_SIZE: usize = AssetId::LEN + WORD_SIZE;