mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: use u64 for blobcount (#14250)
This commit is contained in:
@ -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,
|
||||
},
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user