Trying to deploy a smart contract that communicates with Compound on Rinkeby and am stuck at deployment
Environment
Truffle v5.1.56 (core: 5.1.56)
Solidity v0.5.16 (solc-js)
Node v12.19.0
Web3.js v1.2.9
Details
Code to reproduce
Here is my the constructor code in the DeFi project
contract MyDeFiProject {
ComptrollerInterface public comptroller;
PriceOracleInterface public priceOracle;
constructor(
address _comptroller,
address _priceOracle
) {
comptroller = ComptrollerInterface(_comptroller);
priceOracle = PriceOracleInterface(_priceOracle);
}