Files
reth/crates/primitives/src/request.rs
Thomas Coratger 2b4fa96065 add explicit_iter_loop clippy lint (#8570)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2024-06-03 18:14:50 +00:00

56 lines
1.4 KiB
Rust

//! EIP-7685 requests.
use crate::Request;
use alloy_eips::eip7685::{Decodable7685, Encodable7685};
use alloy_rlp::{Decodable, Encodable};
use reth_codecs::{main_codec, Compact};
use revm_primitives::Bytes;
/// A list of EIP-7685 requests.
#[main_codec]
#[derive(Debug, Clone, PartialEq, Eq, Default, Hash)]
pub struct Requests(pub Vec<Request>);
impl From<Vec<Request>> for Requests {
fn from(requests: Vec<Request>) -> Self {
Self(requests)
}
}
impl IntoIterator for Requests {
type Item = Request;
type IntoIter = std::vec::IntoIter<Request>;
fn into_iter(self) -> Self::IntoIter {
self.0.into_iter()
}
}
impl Encodable for Requests {
fn encode(&self, out: &mut dyn bytes::BufMut) {
let mut h = alloy_rlp::Header { list: true, payload_length: 0 };
let mut encoded = Vec::new();
for req in &self.0 {
let encoded_req = req.encoded_7685();
h.payload_length += encoded_req.len();
encoded.push(Bytes::from(encoded_req));
}
h.encode(out);
for req in encoded {
req.encode(out);
}
}
}
impl Decodable for Requests {
fn decode(buf: &mut &[u8]) -> alloy_rlp::Result<Self> {
Ok(<Vec<Bytes> as Decodable>::decode(buf)?
.into_iter()
.map(|bytes| Request::decode_7685(&mut bytes.as_ref()))
.collect::<Result<Vec<_>, alloy_eips::eip7685::Eip7685Error>>()
.map(Self)?)
}
}