Remove blockhash from fee calculation (#20641)

This commit is contained in:
Jack May
2021-10-13 13:10:58 -07:00
committed by GitHub
parent 149d224557
commit da45be366a
21 changed files with 53 additions and 119 deletions

View File

@@ -486,7 +486,8 @@ impl Accounts {
.cloned()
});
let fee = if let Some(fee_calculator) = fee_calculator {
tx.message().calculate_fee(&fee_calculator)
tx.message()
.calculate_fee(fee_calculator.lamports_per_signature)
} else {
return (Err(TransactionError::BlockhashNotFound), None);
};