Skip to content

Commit

Permalink
prep mainnet deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
ethereumdegen committed Feb 27, 2024
1 parent 3253fa7 commit 8a6fbc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ deployFn.dependencies = ['teller-v2:deploy', 'collateral:manager-v2:deploy']
deployFn.skip = async (hre) => {
return (
!hre.network.live ||
!['mainnet', 'goerli'].includes(hre.network.name)
![ 'goerli'].includes(hre.network.name)
)
}
export default deployFn
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ deployFn.dependencies = []
deployFn.skip = async (hre) => {
return (
!hre.network.live ||
!['mainnet', 'goerli'].includes(hre.network.name)
![ 'goerli'].includes(hre.network.name)
)
}
export default deployFn
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ deployFn.dependencies = ['teller-v2:deploy', 'market-registry:v2-upgrade']
deployFn.skip = async (hre) => {
return (
!hre.network.live ||
!['mainnet', 'goerli'].includes(hre.network.name)
![ 'goerli'].includes(hre.network.name)
)
}
export default deployFn

0 comments on commit 8a6fbc5

Please sign in to comment.