Skip to content

Commit 246d56e

Browse files
committed
docs: and the js version
Remove unused variables.
1 parent e860492 commit 246d56e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/content/ignition/docs/guides/upgradeable-proxies.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ const UpgradeModule = require("../ignition/modules/UpgradeModule");
326326
describe("Demo Proxy", function () {
327327
describe("Proxy interaction", async function () {
328328
it("Should be interactable via proxy", async function () {
329-
const [owner, otherAccount] = await ethers.getSigners();
329+
const [, otherAccount] = await ethers.getSigners();
330330

331331
const { demo } = await ignition.deploy(ProxyModule);
332332

@@ -336,15 +336,15 @@ describe("Demo Proxy", function () {
336336

337337
describe("Upgrading", function () {
338338
it("Should have upgraded the proxy to DemoV2", async function () {
339-
const [owner, otherAccount] = await ethers.getSigners();
339+
const [, otherAccount] = await ethers.getSigners();
340340

341341
const { demo } = await ignition.deploy(UpgradeModule);
342342

343343
expect(await demo.connect(otherAccount).version()).to.equal("2.0.0");
344344
});
345345

346346
it("Should have set the name during upgrade", async function () {
347-
const [owner, otherAccount] = await ethers.getSigners();
347+
const [, otherAccount] = await ethers.getSigners();
348348

349349
const { demo } = await ignition.deploy(UpgradeModule);
350350

0 commit comments

Comments
 (0)