Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix: remove self of handle_fee
Browse files Browse the repository at this point in the history
  • Loading branch information
Subsegment committed Apr 22, 2024
1 parent a620040 commit 3b9936a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/blockifier/src/transaction/account_transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,6 @@ impl AccountTransaction {
}

fn handle_fee(
&self,
state: &mut dyn State,
tx_context: Arc<TransactionContext>,
actual_fee: Fee,
Expand Down Expand Up @@ -630,7 +629,8 @@ impl<S: StateReader> ExecutableTransaction<S> for AccountTransaction {
charge_fee,
)?;

let fee_transfer_call_info = self.handle_fee(state, tx_context, final_fee, charge_fee)?;
let fee_transfer_call_info =
AccountTransaction::handle_fee(state, tx_context, final_fee, charge_fee)?;

let tx_execution_info = TransactionExecutionInfo {
validate_call_info,
Expand Down

0 comments on commit 3b9936a

Please sign in to comment.