Skip to content

Commit

Permalink
linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevcs committed Feb 27, 2024
1 parent 375a5be commit f5da589
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/web3-eth-ens/src/resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ import { ResolverMethodMissingError } from 'web3-errors';
import { Contract } from 'web3-eth-contract';
import { isNullish, sha3 } from 'web3-utils';
import { isHexStrict } from 'web3-validator';
import { Address, PayableCallOptions } from 'web3-types';
import { PublicResolverAbi } from './abi/ens/PublicResolver.js';
import { interfaceIds, methodsInInterface } from './config.js';
import { Registry } from './registry.js';
import { namehash } from './utils.js';
import { Address, PayableCallOptions } from 'web3-types';


// Default public resolver
// https://github.com/ensdomains/resolvers/blob/master/contracts/PublicResolver.sol
Expand Down

1 comment on commit f5da589

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: f5da589 Previous: 6c075db Ratio
processingTx 9472 ops/sec (±4.40%) 9301 ops/sec (±4.81%) 0.98
processingContractDeploy 38611 ops/sec (±8.02%) 39129 ops/sec (±7.62%) 1.01
processingContractMethodSend 19249 ops/sec (±6.53%) 19443 ops/sec (±5.19%) 1.01
processingContractMethodCall 38663 ops/sec (±4.05%) 38971 ops/sec (±6.34%) 1.01
abiEncode 45973 ops/sec (±6.53%) 44252 ops/sec (±6.92%) 0.96
abiDecode 30739 ops/sec (±6.08%) 30419 ops/sec (±8.89%) 0.99
sign 1709 ops/sec (±0.78%) 1656 ops/sec (±4.08%) 0.97
verify 373 ops/sec (±0.98%) 373 ops/sec (±0.78%) 1

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.