fix smol lint

This commit is contained in:
realbigsean 2023-07-17 10:28:37 -04:00
parent 0f514cbb36
commit a618830f8f
No known key found for this signature in database
GPG Key ID: BE1B3DB104F6C788

View File

@ -101,7 +101,7 @@ impl TestRig {
let mut blob_sidecars = vec![];
if let Ok(message) = block.message_deneb_mut() {
// get random number between 0 and Max Blobs
let mut payload: &mut FullPayloadDeneb<E> = &mut message.body.execution_payload;
let payload: &mut FullPayloadDeneb<E> = &mut message.body.execution_payload;
let num_blobs = match num_blobs {
NumBlobs::Random => {
let mut num_blobs = rand::random::<usize>() % E::max_blobs_per_block();