Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update state archival language nit #743

Merged
merged 9 commits into from
Jul 2, 2024
2 changes: 1 addition & 1 deletion docs/learn/encyclopedia/storage/state-archival.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ struct RestoreFootprintOp
};
```

`RestoreFootprintOp` is a Soroban operation that will restore archived entries specified in the _read-write set of the footprint_ and make them accessible again. The read-only set of the footprint must be empty. An archived entry is one where its liveUntilLedger is less than the current ledger number. **Only persistent entries can be restored.**
`RestoreFootprintOp` is a Soroban operation that will restore archived entries specified in the _read-write set of the footprint_ and make them accessible again. The read-only set of the footprint must be empty. An archived entry is one where its liveUntilLedger is less than the current ledger number. **Only persistent and instance entries can be restored.**

The restored entry will have its live until ledger extended to the [minimum] the network allows for newly created entries, which is `current_ledger_number + 4095` for persistent entries. The minimum TTL value is a network configuration parameter and is subject to be updated (likely increased) via network upgrades.

Expand Down
Loading