diff --git a/tools/SendBlobs/SetupCli.cs b/tools/SendBlobs/SetupCli.cs index 4b68a8557ec..af627173441 100644 --- a/tools/SendBlobs/SetupCli.cs +++ b/tools/SendBlobs/SetupCli.cs @@ -209,7 +209,7 @@ public static void SetupDistributeCommand(Command root) FundsDistributor distributor = new( rpcClient, chainId, parseResult.GetValue(keyFileOption), SimpleConsoleLogManager.Instance); - IEnumerable hashes = await distributor.DitributeFunds( + await distributor.DitributeFunds( signer, parseResult.GetValue(keyNumberOption), parseResult.GetValue(maxFeeOption), @@ -267,7 +267,7 @@ public static void SetupReclaimCommand(Command root) ulong chainId = HexConvert.ToUInt64(chainIdString); FundsDistributor distributor = new(rpcClient, chainId, parseResult.GetValue(keyFileOption), SimpleConsoleLogManager.Instance); - IEnumerable hashes = await distributor.ReclaimFunds( + await distributor.ReclaimFunds( new(parseResult.GetValue(receiverOption)!), parseResult.GetValue(maxFeeOption), parseResult.GetValue(maxPriorityFeeGasOption));