rollback setInterval

pull/5370/head
yann300 2 years ago committed by Aniket
parent c8bfdfb61d
commit 11ed5e9d16
  1. 2
      apps/remix-ide/src/blockchain/blockchain.js
  2. 2
      libs/remix-ui/run-tab/src/lib/actions/index.ts

@ -74,7 +74,7 @@ export class Blockchain extends Plugin {
this.networkStatus = { network, error }
this.event.trigger('networkStatus', [this.networkStatus])
})
}, 100000)
}, 1000)
}
getCurrentNetworkStatus () {

@ -26,7 +26,7 @@ export const initRunTab = (udapp: RunTab) => async (reducerDispatch: React.Dispa
setupEvents(plugin, dispatch)
setInterval(() => {
fillAccountsList(plugin, dispatch)
}, 10000000)
}, 1000)
}
export const setAccountAddress = (account: string) => setAccount(dispatch, account)

Loading…
Cancel
Save