We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d03386c commit c5a2bcbCopy full SHA for c5a2bcb
src/pages/core/architecture/actor-model.mdx
@@ -50,8 +50,8 @@ be.
50
51
But how does that fix reentrancy? In CosmWasm, you can only send out messages at
52
the end of a contract execution as part of the response. This ensures you have
53
-already written everything to the state, meaning your state is in a consistent
54
-state.
+already written everything to the state, meaning the state can't suddenly change
+mid-execution and make your contract exhibit buggy behaviour.
55
56
CosmWasm effectively forces you to follow the
57
[CEI pattern (Checks, Effects, Interactions)](https://fravoll.github.io/solidity-patterns/checks_effects_interactions.html)
0 commit comments