Skip to content

Commit

Permalink
Refactor variable names for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm360 committed Oct 8, 2024
1 parent 7e98c47 commit 3413d5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/BeeNet.Client/BeeClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -936,8 +936,8 @@ public async Task<GranteeResponse> GranteePatchAsync(
string reference,
string swarmActHistoryAddress,
PostageBatchId batchId,
string[] AddList,
string[] RevokeList,
string[] addList,
string[] revokeList,
TagId? tagId = null,
bool? swarmPin = null,
bool? swarmDeferredUpload = null,
Expand All @@ -947,7 +947,7 @@ public async Task<GranteeResponse> GranteePatchAsync(
reference,
swarmActHistoryAddress,
batchId.ToString(),
new Body2() { Add = AddList, Revoke = RevokeList },
new Body2 { Add = addList, Revoke = revokeList },
tagId?.ToString(),
swarmPin,
swarmDeferredUpload,
Expand Down
2 changes: 1 addition & 1 deletion src/BeeNet.Util/IBeeClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ Task<TxInfo> GetTransactionInfoAsync(
/// <param name="reference">Grantee list reference</param>
/// <returns>Ok</returns>
/// <exception cref="BeeNetApiException">A server side error occurred.</exception>
Task<GranteeResponse> GranteePatchAsync(string reference, string swarmActHistoryAddress, PostageBatchId batchId, string[] AddList, string[] RevokeList, TagId? tagId = null, bool? swarmPin = null, bool? swarmDeferredUpload = null, CancellationToken cancellationToken = default);
Task<GranteeResponse> GranteePatchAsync(string reference, string swarmActHistoryAddress, PostageBatchId batchId, string[] addList, string[] revokeList, TagId? tagId = null, bool? swarmPin = null, bool? swarmDeferredUpload = null, CancellationToken cancellationToken = default);

/// <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
/// <summary>
Expand Down

0 comments on commit 3413d5f

Please sign in to comment.