chore(txpool): move basefee to u64 (#3872)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Roman Krasiuk
2023-07-24 13:08:34 +03:00
committed by GitHub
parent 95cbff31f9
commit c878a9f489
15 changed files with 46 additions and 47 deletions

View File

@ -581,7 +581,7 @@ fn build_payload<Pool, Client>(
let base_fee = initialized_block_env.basefee.to::<u64>();
let mut executed_txs = Vec::new();
let mut best_txs = pool.best_transactions_with_base_fee(base_fee as u128);
let mut best_txs = pool.best_transactions_with_base_fee(base_fee);
let mut total_fees = U256::ZERO;