chore: use u64 for blobcount (#14250)

This commit is contained in:
Matthias Seitz
2025-02-06 00:15:24 +01:00
committed by GitHub
parent 06132f509c
commit f80d8f25f9
3 changed files with 7 additions and 6 deletions

View File

@ -267,8 +267,8 @@ where
&pool_tx,
InvalidPoolTransactionError::Eip4844(
Eip4844PoolTransactionError::TooManyEip4844Blobs {
have: (block_blob_count + tx_blob_count) as usize,
permitted: max_blob_count as usize,
have: block_blob_count + tx_blob_count,
permitted: max_blob_count,
},
),
);