The Graph.
登录

¿La función de contrato actualizará el valor de la variable?

讨论
  • INDEXERS

Si una función de contrato emite un evento A, actualiza una variable y, a continuación, emite el evento B, ¿se actualizará el valor de la variable en el controlador del evento A o en el controlador del evento B?

添加评论

答案1

event A's handler will fetch the previous state of the variable because it is executed before the variable is updated within the transaction, event B's handler will fetch the updated state of the variable because it is executed after the update occurs within the transaction.

添加评论

你知道答案吗?

请登录并分享。

登录