Skip to content

Commit 7420e7b

Browse files
author
Igor Goldobin
committed
chore: removed distribute from commands
1 parent 30fa621 commit 7420e7b

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

AddressOwnershipTool/App.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,13 @@ public async Task Run(string[] args)
2424

2525
Parser
2626
.Default
27-
.ParseArguments<ClaimInstruction, DistributeInstruction, ValidateInstruction, ScanInstruction>(args)
27+
.ParseArguments<ClaimInstruction, ValidateInstruction, ScanInstruction>(args)
2828
.MapResult(
2929
(ClaimInstruction instruction) =>
3030
{
3131
command = instruction.ToCommand();
3232
return 0;
3333
},
34-
(DistributeInstruction instruction) =>
35-
{
36-
command = instruction.ToCommand();
37-
return 0;
38-
},
3934
(ValidateInstruction instruction) =>
4035
{
4136
command = instruction.ToCommand();

0 commit comments

Comments
 (0)