Function accumulate_deposits_from_receipts

pub fn accumulate_deposits_from_receipts<'a, I, R>(
    address: Address,
    receipts: I,
    out: &mut Vec<u8>,
) -> Result<(), BlockValidationError>
where I: IntoIterator<Item = &'a R>, R: TxReceipt<Log = Log> + 'a,
Available on crate feature evm only.
Expand description

Accumulate deposits from a list of receipts. Iterates over the logs in the receipts and accumulates the deposit request bytestrings.