Skip to content

Commit

Permalink
remove obsolete code
Browse files Browse the repository at this point in the history
  • Loading branch information
DanL0 committed Feb 17, 2025
1 parent c435199 commit 25d06eb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions examples/oft-upgradeable/deploy/MyOFTAdapterFeeUpgradeable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ const deploy: DeployFunction = async (hre) => {

const { address, abi } = getDeploymentAddressAndAbi(hre.network.name, 'EndpointV2')
const endpointV2Deployment = new Contract(address, abi, signer)
try {
const proxy = await hre.ethers.getContract('MyOFTFeeUpgradeable')
console.log(`Proxy: ${proxy.address}`)
} catch (e) {
console.log(`Proxy not found`)
}

await deploy(contractName, {
from: signer.address,
Expand Down
6 changes: 0 additions & 6 deletions examples/oft-upgradeable/deploy/MyOFTAdapterUpgradeable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ const deploy: DeployFunction = async (hre) => {

const { address, abi } = getDeploymentAddressAndAbi(hre.network.name, 'EndpointV2')
const endpointV2Deployment = new Contract(address, abi, signer)
try {
const proxy = await hre.ethers.getContract('MyOFTUpgradeable')
console.log(`Proxy: ${proxy.address}`)
} catch (e) {
console.log(`Proxy not found`)
}

await deploy(contractName, {
from: signer.address,
Expand Down

0 comments on commit 25d06eb

Please sign in to comment.