Type Alias iota_types::execution::DeletedSharedObjectInfo
source ยท 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.
- The version of the shared object.
- Whether the object appeared as mutable (or owned) in the transaction, or as a read-only shared object.
- The transaction digest of the previous transaction that used this shared object mutably or took it by value.