pub type DeletedSharedObjectInfo = (ObjectID, SequenceNumber, bool, TransactionDigest);
Expand description

A type containing all of the information needed to work with a deleted shared object in execution and when committing the execution effects of the transaction. This holds: 0. The object ID of the deleted shared object.

  1. The version of the shared object.
  2. Whether the object appeared as mutable (or owned) in the transaction, or as a read-only shared object.
  3. The transaction digest of the previous transaction that used this shared object mutably or took it by value.