Environment
Truffle v5.1.48
Solidity - 0.6 (solc-js)
Node v12.21.0
@openzeppelin/contracts-ethereum-package: 3.0.0
@openzeppelin/truffle-upgrades: 1.9.1
web3: 1.5.2
Details
Hi,
I am using truffle migrate and OpenZeppelin upgradeable plugin to deploy my contract.
Everything ran smoothly, until after TransparentUpgradeableProxy is deployed, the process is stopped due to my deployer address does not have enough gas.
err: insufficient funds for gas * price + value:
If I run truffle migrate again, it will start over from deploying TransparentUpgradeableProxy .
I would like to check if there is any way to patch the deployment process to skip the TransparentUpgradeableProxy deployment step and Save to migration.
Thank you!
Kevin