Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mystenmark committed Nov 2, 2023
1 parent 069e13a commit db337b1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/sui-core/src/transaction_input_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,10 @@ impl TransactionInputLoader {
});
continue;
}
InputObjectKind::ImmOrOwnedMoveObject(objref) => object_keys.push(objref.into()),
InputObjectKind::ImmOrOwnedMoveObject(objref) => {
object_keys.push(objref.into());
fetches.push((i, input));
}
InputObjectKind::SharedMoveObject { id, .. } => {
let shared_locks = shared_locks_cell.get_or_try_init(|| {
Ok::<HashMap<ObjectID, SequenceNumber>, SuiError>(
Expand Down

0 comments on commit db337b1

Please sign in to comment.