Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-fleming committed Jan 6, 2025
1 parent 31634e9 commit db43725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/test_common/src/mocks/erc4626.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ pub mod ERC4626FeesMock {
fn after_deposit(
ref self: ERC4626Component::ComponentState<ContractState>, assets: u256, shares: u256,
) {
let mut contract_state =self.get_contract_mut();
let mut contract_state = self.get_contract_mut();
let entry_basis_points = contract_state.entry_fee_basis_point_value.read();
let fee = contract_state.fee_on_total(assets, entry_basis_points);
let recipient = contract_state.entry_fee_recipient.read();
Expand Down

0 comments on commit db43725

Please sign in to comment.