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
Properties
Address
public IAddress Address { get; init; }
Property Value
Amount
public CcdAmount Amount { get; init; }