Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.

Commit

Permalink
Remove useless argument (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
Atralupus authored Feb 12, 2024
1 parent 0afec87 commit 0623d61
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions backend/app/Savor22b/GraphTypes/Query/Query.cs
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,6 @@ swarm is null
Name = "publicKey",
Description = "The base64-encoded public key for Transaction.",
},
new QueryArgument<NonNullGraphType<GuidGraphType>>
{
Name = "seedStateId",
Description = "Seed state Id (Guid)",
},
new QueryArgument<NonNullGraphType<IntGraphType>>
{
Name = "fieldIndex",
Expand All @@ -249,7 +244,7 @@ swarm is null
);

var action = new PlantingSeedAction(
context.GetArgument<Guid>("seedStateId"),
Guid.NewGuid(),
context.GetArgument<int>("fieldIndex"),
context.GetArgument<Guid>("itemStateIdToUse")
);
Expand Down

0 comments on commit 0623d61

Please sign in to comment.