Search code examples
ethereumsmartcontracts

Ethereum Smat Contract Blocking


Can Ethereum's Validator execute several Smart Contracts at the same time? Or it can not make any other operation if started the execution?


Solution

  • Since transactions from a block or pool are executed sequentially, and a transaction can only refer to one smart contract, the EVM executes only one smart contract at a time (while internal calls from it are possible).

    А в чем собственно проблема? :-)