define blocks execution sequence?
-
please kindly suggest how can I secure that block #100 is executed after all other blocks under block #1 - no matter what the result is?
A. The ID (100 is the largest) is suficient to secure this.

OR
B. After all other blocks are passed, by connecting all other blocks' output to it.
OR buy connecting all outputs to the block #100

C. both are good?
Thank you guys!
-
btw.
with "executed", I mean the result of block #2, #2, #4 and #6 are present - the CPU has processed all these blocks - then block #100 is processed.
Not just the blocks are just sitting in a queue like (#2 -> #3 -> #4 -> #100)waiting for CPU time。 -
@haoglueck Your first structure is correct. The block number 100 will be executed AFTER all other previous blocks. You don't need the second structure.
-
Thank you sir!
-
@haoglueck You're welcome.