apply_auth_list

Function apply_auth_list 

pub fn apply_auth_list<JOURNAL, ERROR>(
    chain_id: u64,
    auth_list: impl Iterator<Item = impl AuthorizationTr>,
    journal: &mut JOURNAL,
) -> Result<u64, ERROR>
where JOURNAL: JournalTr, ERROR: From<InvalidTransaction> + From<<<JOURNAL as JournalTr>::Database as Database>::Error>,
Expand description

Apply EIP-7702 style auth list and return number gas refund on already created accounts.

It is more granular function from apply_eip7702_auth_list function as it takes only the list, journal and chain id.