Skip to content

Commit

Permalink
address review 2
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown unknown committed Nov 21, 2023
1 parent d8e1c94 commit c798130
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x/accounts/keeper_account_abstraction.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (k Keeper) Authenticate(
return k.authenticate(ctx, bundler, op)
})
if err != nil {
return gasUsed, fmt.Errorf("%w: %w", ErrAuthentication, err)
return gasUsed, fmt.Errorf("%v: %w", ErrAuthentication, err)
}
return gasUsed, nil
}
Expand Down Expand Up @@ -114,7 +114,7 @@ func (k Keeper) OpExecuteMessages(
return err
})
if err != nil {
return gasUsed, nil, fmt.Errorf("%w: %w", ErrExecution, err)
return gasUsed, nil, fmt.Errorf("%v: %w", ErrExecution, err)
}
return gasUsed, responses, nil
}
Expand Down Expand Up @@ -167,7 +167,7 @@ func (k Keeper) PayBundler(
return err
})
if err != nil {
return gasUsed, nil, fmt.Errorf("%w: %w", ErrBundlerPayment, err)
return gasUsed, nil, fmt.Errorf("%v: %w", ErrBundlerPayment, err)
}
return gasUsed, responses, nil
}
Expand Down

0 comments on commit c798130

Please sign in to comment.