From 081cefa98a5f78d28ff24f8b306562c018836160 Mon Sep 17 00:00:00 2001 From: igamigo Date: Mon, 28 Oct 2024 18:07:22 -0300 Subject: [PATCH] Fix mistake --- miden-tx/src/executor/mast_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miden-tx/src/executor/mast_store.rs b/miden-tx/src/executor/mast_store.rs index ce5a058c2..df81d18c4 100644 --- a/miden-tx/src/executor/mast_store.rs +++ b/miden-tx/src/executor/mast_store.rs @@ -18,7 +18,7 @@ use vm_processor::MastForestStore; /// MASTs for these procedures. The VM will request [MastForest]s from the store when it encounters /// a procedure which it doesn't have the code for. Thus, to execute a program which makes /// references to external procedures, the store must be loaded with [MastForest]s containing these -/// procedures.use std::collections::BTreeMap; +/// procedures. pub struct TransactionMastStore { mast_forests: RwLock>>, }