Hello. Quick question, how are the calls to sc executed? Async or sequential? For example, let's say I have the adder sc, if 2 calls leave at the same time, they read the storage of the sum and adds 1, how is the reading done? And what value do I have in the end?
all calls are sequentiell, you will never run into race conditions :) Therefore the value at the end will be 2 :)