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
Modify App::commit so that it notifies the snapshot manager about every new committed block event, including:
BlockHeight, so it can decide whether to snapshot it
FvmStateParams which is not in the BlockStore but has to go in the snapshot
The notification is immediate (just writes to STM) and doesn't block anything. We do it in commit so we know that it's already persisted and the notified component will be able to read it.
The text was updated successfully, but these errors were encountered:
Modify
App::commit
so that it notifies the snapshot manager about every new committed block event, including:BlockHeight
, so it can decide whether to snapshot itFvmStateParams
which is not in theBlockStore
but has to go in the snapshotThe notification is immediate (just writes to STM) and doesn't block anything. We do it in
commit
so we know that it's already persisted and the notified component will be able to read it.The text was updated successfully, but these errors were encountered: