You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Under certain conditions, the processor of UTXO cannot process the changes triggered by Transfer Event.
If Additional issue and transfer are performed continuously so as to occur within CREATE_UTXO_INTERVAL (default: 600 seconds) and are processed at once by processor_create_utxo, the balance change of the transfer source is not reflected in UTXO.
This is because the additional issue is processed after the transfer is processed first in the following section, and the balance of the additional issue does not exist in UTXO at the time the transfer is processed, resulting in an insufficient balance and the subtraction being skipped.
purplesmoke05
changed the title
[BUG] Cannot catch balance changes caused by Transfer to update UTXO under certain conditions
[BUG] balance changes due to transfers immediately following an additional issue are not reflected in UTXO
Mar 12, 2024
Describe the bug
CREATE_UTXO_INTERVAL
(default: 600 seconds) and are processed at once by processor_create_utxo, the balance change of the transfer source is not reflected in UTXO.ibet-Prime/batch/processor_create_utxo.py
Lines 87 to 113 in f2849a2
Expected behavior
The text was updated successfully, but these errors were encountered: