Skip to content

Commit

Permalink
tests: use provider wallets instead of waffle signers
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst committed Apr 20, 2021
1 parent 50b167c commit 7a4e277
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/UniswapV3Pool.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ const createFixtureLoader = waffle.createFixtureLoader
type ThenArg<T> = T extends PromiseLike<infer U> ? U : T

describe('UniswapV3Pool', () => {
const [wallet, other] = waffle.provider.getWallets()
const wallet = Wallet.createRandom().connect(ethers.provider)
const other = Wallet.createRandom().connect(ethers.provider)

let token0: TestERC20
let token1: TestERC20
Expand Down

0 comments on commit 7a4e277

Please sign in to comment.