[Ethereum] Mist: “No data is deployed on the contract address!”

contract-debuggingmist

I'm testing a contract on testnet using Mist.

When I deploy it, it says "No data is deployed on the contract address!".

And then it doesn't appear on the contracts section.

What does it mean?

Best Answer

This happens if the transaction with your contract was mined, but them the wallet couldn't find data on this address using web3.eth.getCode(address). This happens if you don't provide enough gas for storing the contract. E.g. it was executed but not stored. This is an encase and shouldn't happen normally.

Related Topic