Skip to content

Commit

Permalink
[#754] Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-ap committed Jul 4, 2024
1 parent 6ffaaf8 commit 78ef010
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/4337/test/erc4337/TestSafe4337Module.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe('TestSafe4337Module', () => {
const { module } = await setupTests()
const [user] = await ethers.getSigners()

let safeOpHash = ethers.hexlify(ethers.randomBytes(32))
const safeOpHash = ethers.hexlify(ethers.randomBytes(32))

const signature = buildSignatureBytes([
await signHash(user, safeOpHash),
Expand All @@ -78,7 +78,7 @@ describe('TestSafe4337Module', () => {
const { module } = await setupTests()
const [user] = await ethers.getSigners()

let safeOpHash = ethers.hexlify(ethers.randomBytes(32))
const safeOpHash = ethers.hexlify(ethers.randomBytes(32))

const signature = buildSignatureBytes([
await signHash(user, safeOpHash),
Expand All @@ -102,7 +102,7 @@ describe('TestSafe4337Module', () => {
const { module } = await setupTests()
const [user] = await ethers.getSigners()

let safeOpHash = ethers.hexlify(ethers.randomBytes(32))
const safeOpHash = ethers.hexlify(ethers.randomBytes(32))

const signature = buildSignatureBytes([
await signHash(user, safeOpHash),
Expand Down

0 comments on commit 78ef010

Please sign in to comment.