We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30fa621 commit 7420e7bCopy full SHA for 7420e7b
1 file changed
AddressOwnershipTool/App.cs
@@ -24,18 +24,13 @@ public async Task Run(string[] args)
24
25
Parser
26
.Default
27
- .ParseArguments<ClaimInstruction, DistributeInstruction, ValidateInstruction, ScanInstruction>(args)
+ .ParseArguments<ClaimInstruction, ValidateInstruction, ScanInstruction>(args)
28
.MapResult(
29
(ClaimInstruction instruction) =>
30
{
31
command = instruction.ToCommand();
32
return 0;
33
},
34
- (DistributeInstruction instruction) =>
35
- {
36
- command = instruction.ToCommand();
37
- return 0;
38
- },
39
(ValidateInstruction instruction) =>
40
41
0 commit comments