Skip to content

Commit d5186f8

Browse files
authored
Update 4_pyth_add_events_and_update_fee.js (#244)
1 parent f0e8884 commit d5186f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ethereum/migrations/prod/4_pyth_add_events_and_update_fee.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ const { upgradeProxy } = require("@openzeppelin/truffle-upgrades");
1111
* the contract activity.
1212
*/
1313
module.exports = async function (deployer) {
14-
const instance = await PythUpgradable.deployed();
15-
await upgradeProxy(instance.address, PythUpgradable, { deployer });
14+
const proxy = await PythUpgradable.deployed();
15+
await upgradeProxy(proxy.address, PythUpgradable, { deployer });
1616
}

0 commit comments

Comments
 (0)