Class Resumed
- Namespace
- Concordium.Sdk.Types
- Assembly
- Concordium.Sdk.dll
A previously interrupted contract was resumed.
public sealed record Resumed : IContractTraceElement, IEquatable<Resumed>
- Inheritance
-
Resumed
- Implements
- Inherited Members
Constructors
Resumed(ContractAddress, bool)
A previously interrupted contract was resumed.
public Resumed(ContractAddress Address, bool Success)
Parameters
Address
ContractAddressThe contract resumed.
Success
boolWhether the action that caused the interruption (invoke contract or make transfer) was successful or not.
Properties
Address
The contract resumed.
public ContractAddress Address { get; init; }
Property Value
Success
Whether the action that caused the interruption (invoke contract or make transfer) was successful or not.
public bool Success { get; init; }