ethereum / wiki

The Ethereum Wiki
https://www.ethereum.org
14.75k stars 2.56k forks source link

ambigeous code block example #697

Open 0xalizk opened 4 years ago

0xalizk commented 4 years ago

It is not clear what the point being made with this code block the paragraph that follows it:

C0: call(C1); call(C1);
C1: call(C2); call(C2);
C2: call(C3); call(C3);
...
C49: call(C50); call(C50);
C50: (run one step of a program and record the change in storage)

Now, send a transaction to A. Thus, in 51 transactions, we have a contract that takes up 250 computational steps.

what does that mean?