Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename MissingDelegationAddParameter to MissingDelegationAddParameters #54

Merged
1 commit merged into from
Jul 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Property `Timeout` moved into `Options` in class `RawClient`. `Timeout` now defaults to 'indefinitely' compared to 30 seconds in obsolete constructor of `ConcordiumClient`.
- `AccountTransactionType` is renamed to `TransactionType`.
- Bugfix: Record `InvalidInitMethod` had parameter change from `ContractName` to `InitName`.
- Bugfix: Renamed `MissingDelegationAddParameter` to `MissingDelegationAddParameters`.


## 2.0.0
Expand Down
4 changes: 2 additions & 2 deletions src/Types/RejectReason.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ internal static IRejectReason From(Grpc.V2.RejectReason other) =>
Grpc.V2.RejectReason.ReasonOneofCase.AlreadyADelegator => new AlreadyADelegator(),
Grpc.V2.RejectReason.ReasonOneofCase.InsufficientBalanceForDelegationStake =>
new InsufficientBalanceForDelegationStake(),
Grpc.V2.RejectReason.ReasonOneofCase.MissingDelegationAddParameters => new MissingDelegationAddParameter(),
Grpc.V2.RejectReason.ReasonOneofCase.MissingDelegationAddParameters => new MissingDelegationAddParameters(),
Grpc.V2.RejectReason.ReasonOneofCase.InsufficientDelegationStake => new InsufficientDelegationStake(),
Grpc.V2.RejectReason.ReasonOneofCase.DelegatorInCooldown => new DelegatorInCooldown(),
Grpc.V2.RejectReason.ReasonOneofCase.NotADelegator => new NotADelegator(
Expand Down Expand Up @@ -351,7 +351,7 @@ public sealed record InsufficientBalanceForDelegationStake : IRejectReason;
/// A configure delegation transaction is missing one or more arguments in
/// order to add a delegator.
/// </summary>
public sealed record MissingDelegationAddParameter : IRejectReason;
public sealed record MissingDelegationAddParameters : IRejectReason;
/// <summary>
/// Delegation stake when adding a delegator was 0.
/// </summary>
Expand Down