Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nlordell committed Nov 9, 2023
1 parent 27a2e98 commit b20eab9
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions contracts/SafeProtocolManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -465,11 +465,7 @@ contract SafeProtocolManager is ISafeProtocolManager, RegistryManager, HooksMana
}
}

function transferPrefund(
address account,
address payable entrypoint,
uint256 missingAccountFunds
) external override {
function transferPrefund(address account, address payable entrypoint, uint256 missingAccountFunds) external override {
require(functionHandlers[hex"3a871cdd"][account] == msg.sender);
IAccount(account).execTransactionFromModule(entrypoint, missingAccountFunds, "", 0);
}
Expand Down

0 comments on commit b20eab9

Please sign in to comment.