Skip to content

Commit

Permalink
♻️ Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
William Cory authored and William Cory committed Sep 25, 2024
1 parent 0e66a68 commit b1fa6f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/actions/src/Call/callHandlerOpts.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const callHandlerOpts = async (client, params) => {
baseFeePerGas:
params.blockOverrideSet.baseFee !== undefined
? BigInt(params.blockOverrideSet.baseFee)
: (header.baseFeePerGas ?? BigInt(0)),
: header.baseFeePerGas ?? BigInt(0),
cliqueSigner() {
return header.cliqueSigner()
},
Expand Down
2 changes: 1 addition & 1 deletion packages/precompiles/src/logToEthjsLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const logToEthjsLog = <TAbi extends Abi>(
const argsArray = Array.isArray(log.args)
? log.args
: Object.values(log.args ?? {}).length > 0
? (inputs?.map((x: any) => (log.args as any)[x.name]) ?? [])
? inputs?.map((x: any) => (log.args as any)[x.name]) ?? []
: []
const data = encodeAbiParameters(eventItem.inputs, argsArray)
return [hexToBytes(log.address), topics, hexToBytes(data)]
Expand Down

0 comments on commit b1fa6f6

Please sign in to comment.