Skip to content

Commit

Permalink
remove extra logs (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
drortirosh authored Aug 5, 2024
1 parent 151c133 commit 51f2efb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/utils/src/RIP7560Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ function nonZeroAddr(addr?: string): Buffer {

function rlpEncodeRip7560Tx (op: OperationRIP7560, forSignature = true): string {
const input: Input = []
console.log('op to encode:', op)
input.push(bigNumberishToUnpaddedBuffer(op.chainId))
input.push(bigNumberishToUnpaddedBuffer(op.maxPriorityFeePerGas))
input.push(bigNumberishToUnpaddedBuffer(op.maxFeePerGas))
Expand Down
3 changes: 2 additions & 1 deletion packages/validation-manager/src/ValidationManagerRIP7560.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
import { IValidationManager, ValidateUserOpResult, ValidationResult } from './IValidationManager'
import { eth_traceRip7560Validation } from './GethTracer'
import { tracerResultParser } from './TracerResultParser'
import debug from 'debug'

export const AA_ENTRY_POINT = '0x0000000000000000000000000000000000007560'

Expand Down Expand Up @@ -42,7 +43,7 @@ export class ValidationManagerRIP7560 implements IValidationManager {
paymasterInfo: { stake: 0, addr: operation.paymaster ?? '', unstakeDelaySec: 0 },
senderInfo: { stake: 0, addr: operation.sender, unstakeDelaySec: 0 }
}
console.log(JSON.stringify(traceResult))
debug(`traceResult= ${JSON.stringify(traceResult)}`)
// this.parseValidationTracingResult(traceResult)
// let contractAddresses: string[]
// [contractAddresses, storageMap] =
Expand Down

0 comments on commit 51f2efb

Please sign in to comment.