SVM: add a missing doc comment (#347)

This commit is contained in:
Dmitri Makarov 2024-03-20 20:03:20 -04:00 committed by GitHub
parent ade90354a1
commit 54575feb42
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -135,6 +135,9 @@ pub struct TransactionBatchProcessor<FG: ForkGraph> {
/// Optional config parameters that can override runtime behavior
runtime_config: Arc<RuntimeConfig>,
/// SysvarCache is a collection of system variables that are
/// accessible from on chain programs. It is passed to SVM from
/// client code (e.g. Bank) and forwarded to the MessageProcessor.
pub sysvar_cache: RwLock<SysvarCache>,
/// Programs required for transaction batch processing