Table of Contents

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 ContractAddress

The contract resumed.

Success bool

Whether 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

ContractAddress

Success

Whether the action that caused the interruption (invoke contract or make transfer) was successful or not.

public bool Success { get; init; }

Property Value

bool