Truffle error: encountered an error. Network status is unknown. View successful transactions manually

Every time I try to deploy truffle migrate --resetmy Organization.sol contract, I get the following error

Error encountered, bailing. Network state unknown. Review successful transactions manually.

I was looking for a mistake and, apparently, this is due to the size of the contract. My Organization.sol is not even that big; I used to see big contracts.

Here is my contract: https://github.com/ulixir/eth-task-contracts/blob/master/contracts/Organization.sol

Any clues?

+4
source share
1 answer

Error: insufficient funds for gas * price + value? ethereum, , .
, miner.start() geth , genesis.json. here.

, ethereum:
 1. geth db geth --datadir "<your datadir>" removedb.
 2. geth node geth <your other params here> init <yourGenesisFile>
 3. geth node , miner.start()

, , .

, ethereum . ?....... , .

0

Source: https://habr.com/ru/post/1688493/


All Articles