chore: use u128 for update_blob_fee (#5045)

This commit is contained in:
Dan Cline
2023-10-17 06:50:19 -04:00
committed by GitHub
parent 12ac1f153f
commit d3ea66bb79

View File

@ -146,7 +146,7 @@ impl<T: TransactionOrdering> TxPool<T> {
}
/// Updates the tracked blob fee
fn update_blob_fee(&mut self, _pending_blob_fee: u64) {
fn update_blob_fee(&mut self, _pending_blob_fee: u128) {
// TODO(mattsse): update blob txs
}
@ -207,7 +207,7 @@ impl<T: TransactionOrdering> TxPool<T> {
if let Some(blob_fee) = pending_blob_fee {
self.all_transactions.pending_blob_fee = blob_fee;
self.update_blob_fee(pending_basefee)
self.update_blob_fee(blob_fee)
}
}