chore: remove unrelated SAFETY tags on comments (#6726)

Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>
This commit is contained in:
Nil Medvedev
2024-02-21 21:29:29 +01:00
committed by GitHub
parent 2cb9fe184a
commit 1269528aa8
5 changed files with 6 additions and 6 deletions

View File

@ -169,7 +169,7 @@ impl TxEip4844 {
/// Returns the total gas for all blobs in this transaction.
#[inline]
pub fn blob_gas(&self) -> u64 {
// SAFETY: we don't expect u64::MAX / DATA_GAS_PER_BLOB hashes in a single transaction
// NOTE: we don't expect u64::MAX / DATA_GAS_PER_BLOB hashes in a single transaction
self.blob_versioned_hashes.len() as u64 * DATA_GAS_PER_BLOB
}