I have unboxed pet-shop. Then inside the contracts folder, I made a file Election.sol which has the code -
pragma solidity ^0.5.8;
contract Election{
string public candidate;
constructor() public{
candidate = "candidate 1"; //state var
}
}
Then inside migrations folder, I made 2_deploy_contract.js which has the code -
var Election = artifacts.require("./Election.sol");
module.exports = function(deployer) {
deployer.deploy(Election );
};
When I do truffle migrate, I get this error. - truffle migrate
Compiling your contracts...
Everything is up to date, there is nothing to compile.
Migrations dry-run (simulation)
Network name: 'development-fork' Network id: 1 Block gas limit: 0x1388
1_initial_migration.js
Deploying 'Migrations'
Error: Error: Error: * Deployment Failed *
"Migrations" ran out of gas (using Truffle's estimate.) * Block limit: 0x50e7c * Gas sent: undefined * Try: + Setting a higher gas estimate multiplier for this contract + Using the solc optimizer settings in 'truffle-config.js' + Making your contract smaller + Making your contract constructor more efficient + Setting a higher network block limit if you are on a private network or test client (like ganache).
at Object.run (/usr/local/lib/node_modules/truffle/build/webpack:/packages/truffle-migrate/index.js:92:1)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
Truffle v5.0.22 (core: 5.0.22) Node v8.10.0