java.lang.Object
com.hedera.hashgraph.sdk.StorageChange
Deprecated.
- User mirror nodes for contract traceability instead
A storage slot change description.
See Hedera Documentation
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal BigIntegerDeprecated.The storage slot changed.final BigIntegerDeprecated.The value read from the storage slot.final BigIntegerDeprecated.The new value written to the slot. -
Constructor Summary
ConstructorsConstructorDescriptionStorageChange(BigInteger slot, BigInteger valueRead, BigInteger valueWritten) Deprecated.Constructor. -
Method Summary
-
Field Details
-
slot
Deprecated.The storage slot changed. Up to 32 bytes, big-endian, zero bytes left trimmed -
valueRead
Deprecated.The value read from the storage slot. Up to 32 bytes, big-endian, zero bytes left trimmed. Because of the way SSTORE operations are charged the slot is always read before being written to -
valueWritten
Deprecated.The new value written to the slot. Up to 32 bytes, big-endian, zero bytes left trimmed. If a value of zero is written the valueWritten will be present but the inner value will be absent. If a value was read and not written this value will not be present.
-
-
Constructor Details
-
StorageChange
StorageChange(BigInteger slot, BigInteger valueRead, @Nullable BigInteger valueWritten) Deprecated.Constructor.- Parameters:
slot- the storage slot chargedvalueRead- the value readvalueWritten- the value written
-