2

When connecting Metamask with Ganache-Cli, as soon it generates the accounts and keys, the command window is getting filled with "eth_getBlockByNumber" continuouslyenter image description here, has anyone else faced the issue?

Thanks.

Praveen Kumar
  • 139
  • 2
  • 9

3 Answers3

1

It's because Metamask is pooling for the latest block number.

See here : https://github.com/trufflesuite/ganache-cli-archive/issues/379

Josh D
  • 3
  • 2
hefgi
  • 111
  • 3
0

you are running test RPC that is how it looks like. If you stop test RPC then your blocks would not be fixed in the chain, which is created internally in the system.

Kartikey
  • 21
  • 3
0

What you see is ganache-cli logging.

You can turn it off using the -q option like so:

$ ganache-cli -q
Ytsen de Boer
  • 391
  • 1
  • 11