-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup executors #416
base: main
Are you sure you want to change the base?
Cleanup executors #416
Conversation
25fbc5e
to
a2cee31
Compare
src/executor/executor.ts
Outdated
@@ -677,144 +284,79 @@ export class Executor { | |||
}) | |||
|
|||
let childLogger = this.logger.child({ | |||
userOperations: opsWithHashes.map((oh) => oh.userOperationHash), | |||
userOperations: userOperations.map((op) => op.hash), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually liked opsWithHashes
since I don't expect the userOperations
to have an hash.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that makes sense, theUserOperationInfo
type now has a seperate field for userOp/userOpHash
No description provided.