¿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.