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
{{ message }}
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
When we have unconfirmed transactions of some type (for example VOTE) waiting in transaction pool and restart node - those transactions will be cleared from transaction pool, but their unconfirmed state will stay. That prevents to resend transaction (because it will not pass unconfirmed checks) and can cause other issues.
Solution:
We should reset unconfirmed tables to confirmed state on node start, query:
BEGIN;
DELETE FROM mem_accounts2u_delegates;
INSERT INTO mem_accounts2u_delegates ("accountId", "dependentId") SELECT "accountId", "dependentId" FROM mem_accounts2delegates;
DELETE FROM mem_accounts2u_multisignatures;
INSERT INTO mem_accounts2u_multisignatures ("accountId", "dependentId") SELECT "accountId", "dependentId" FROM mem_accounts2multisignatures;
COMMIT;
The text was updated successfully, but these errors were encountered:
When we have unconfirmed transactions of some type (for example
VOTE
) waiting in transaction pool and restart node - those transactions will be cleared from transaction pool, but their unconfirmed state will stay. That prevents to resend transaction (because it will not pass unconfirmed checks) and can cause other issues.Solution:
We should reset unconfirmed tables to confirmed state on node start, query:
The text was updated successfully, but these errors were encountered: