Status not available at the moment on private chain
See original GitHub issueWhen I use MetaMask on a private blockchain to try to perform a transaction, the status is “Status not available at the moment”, and I am presented with a black circle, rather than a green tick or a red cross, even after the transaction clears.
Example:
contract Hi {
function hi() public returns (string memory) {
return "hi";
}
}
Issue Analytics
- State:
- Created 4 years ago
- Comments:5
Top Results From Across the Web
My ethereum got the error: Status not available at the moment
When I send a transaction to BC, I get some error information which is "Status not available at the moment ...
Read more >Frequently Asked Questions - Status.im
Frequently Asked Questions. General. What is Status? Status is a private, secure communication tool to uphold human rights and empower sovereign communities ...
Read more >Understanding and resolving MetaMask error codes
This error is returned when the user's MetaMask wallet is not connected to any chain: ethereum.on('disconnect', (error) => console.log(error));.
Read more >What Does My UPS Tracking Status Mean?
The shipment is in the UPS network, but there was an unexpected error that may result in a change in the scheduled delivery...
Read more >Status icons and symbols on your iPhone - Apple Support
(Not available in all areas.) Your carrier's 5G network with higher frequency is available, and your iPhone can connect to the internet over ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@Cyclic3 At last I found a way to make it work on my side. I post it here hope can be helpful. I have added following lines into genesis.json file, and recreate the private chain, and it works. “homesteadBlock”: 0, “eip155Block”: 0, “eip158Block”: 0, “eip150Block”: 0, “byzantiumBlock”: 0, “constantinopleBlock”: 0, “petersburgBlock”: 0
You need genesis file only when you create private chain. If you indeed want to create one, just google, copy and change based on your need. Or you can use puppeth tool to help create private chain, including generate genesis file. https://www.sitepoint.com/puppeth-introduction/