PENDING_MULTISIG_TRANSACTION
event is emitted before confirmations are added
#2391
Labels
bug
Something isn't working
For sending notifications and events to the event queue we use Django signals.
confirmations
are stored in a different table. So first we storeMultisigTransaction
, and then we createConfirmation
and link it using a foreign key. The problem is that the event triggers whenMultisigTransaction
is created, so if a client checks the endpoint the transaction will miss the signers. Delay should be only a few seconds, but that's not acceptable.Solutions
Temporary we recommend to clients to add a small delay when they receive a
PENDING_MULTISIG_TRANSACTION
orEXECUTED_MULTISIG_TRANSACTION
eventThe text was updated successfully, but these errors were encountered: