Commit 5ec31dd8 authored by aniket-engg's avatar aniket-engg Committed by Aniket

specific error on tooltip

parent c8bc5ae3
......@@ -59,6 +59,9 @@ export default class HardhatProvider extends Plugin {
sendAsyncInternal (data, resolve, reject) {
if (this.provider) {
// Check the case where current environment is VM on UI and it still sends RPC requests
// This will be displayed on UI tooltip as 'cannot get account list: Environment Updated !!'
if (this.blockchain.getProvider() !== 'Hardhat Provider' && data.method !== 'net_listening') return reject(new Error('Environment Updated !!'))
this.provider[this.provider.sendAsync ? 'sendAsync' : 'send'](data, (error, message) => {
if (error) {
this.provider = null
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment