File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
vm-rework/sui-adapter/src Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ impl<'backing> TemporaryStore<'backing> {
114
114
max_binary_format_version : self . protocol_config . move_binary_format_version ( ) ,
115
115
loaded_runtime_objects : self . loaded_runtime_objects ,
116
116
no_extraneous_module_bytes : self . protocol_config . no_extraneous_module_bytes ( ) ,
117
- runtime_packages_loaded_from_db : self . runtime_packages_loaded_from_db . read ( ) . clone ( ) ,
117
+ runtime_packages_loaded_from_db : self . runtime_packages_loaded_from_db . into_inner ( ) ,
118
118
}
119
119
}
120
120
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ impl<'backing> TemporaryStore<'backing> {
155
155
max_binary_format_version : self . protocol_config . move_binary_format_version ( ) ,
156
156
loaded_runtime_objects : self . loaded_child_objects ,
157
157
no_extraneous_module_bytes : self . protocol_config . no_extraneous_module_bytes ( ) ,
158
- runtime_packages_loaded_from_db : self . runtime_packages_loaded_from_db . read ( ) . clone ( ) ,
158
+ runtime_packages_loaded_from_db : self . runtime_packages_loaded_from_db . into_inner ( ) ,
159
159
}
160
160
}
161
161
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ impl<'backing> TemporaryStore<'backing> {
113
113
max_binary_format_version : self . protocol_config . move_binary_format_version ( ) ,
114
114
loaded_runtime_objects : self . loaded_runtime_objects ,
115
115
no_extraneous_module_bytes : self . protocol_config . no_extraneous_module_bytes ( ) ,
116
- runtime_packages_loaded_from_db : self . runtime_packages_loaded_from_db . read ( ) . clone ( ) ,
116
+ runtime_packages_loaded_from_db : self . runtime_packages_loaded_from_db . into_inner ( ) ,
117
117
}
118
118
}
119
119
You can’t perform that action at this time.
0 commit comments