Skip to content

Commit

Permalink
fix: [ALCHEMY-010] code maturity fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaypaik committed Nov 21, 2024
1 parent 4027ce4 commit e41fd79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libraries/ExecutionLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ library ExecutionLib {

// N instances of:
// - post hook address (will be squashed with the selector later, during invocation)
// - post hood entity Id
// - post hook entity Id
// - fixed preExecHookData offset (always 0x40)
// - preExecHookData length
// - var-length data (right-padded with zeros to be word aligned)
Expand Down Expand Up @@ -786,7 +786,7 @@ library ExecutionLib {
HookConfig hookConfig = hooks[i];

if (hookConfig.hasPreHook()) {
uint256 returnedBytesSize = ExecutionLib.invokePreExecHook(callBuffer, hookConfig);
uint256 returnedBytesSize = invokePreExecHook(callBuffer, hookConfig);

// If there is an associated post exec hook, save the return data.
if (hookConfig.hasPostHook()) {
Expand Down

0 comments on commit e41fd79

Please sign in to comment.