Table of Contents

Class AmountTooLarge

Namespace
Concordium.Sdk.Types
Assembly
Concordium.Sdk.dll

When one wishes to transfer an amount from A to B but there are not enough funds on account/contract A to make this possible. The data are the from address and the amount to transfer.

public sealed record AmountTooLarge : IRejectReason, IEquatable<AmountTooLarge>
Inheritance
AmountTooLarge
Implements
Inherited Members

Constructors

AmountTooLarge(IAddress, CcdAmount)

When one wishes to transfer an amount from A to B but there are not enough funds on account/contract A to make this possible. The data are the from address and the amount to transfer.

public AmountTooLarge(IAddress Address, CcdAmount Amount)

Parameters

Address IAddress
Amount CcdAmount

Properties

Address

public IAddress Address { get; init; }

Property Value

IAddress

Amount

public CcdAmount Amount { get; init; }

Property Value

CcdAmount