Bitcoin Forum
May 17, 2024, 07:02:45 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 [108] 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 ... 229 »
2141  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 10, 2018, 07:31:28 PM
Patrike,

Small issue that I've discovered...

All algo's have been benchmarked with one or many GPU's and I have them all selected in Options > Algorithms.

Now here is the issue, if I deselect one or more and then at a later date re-enable them in Options > Algorithms, the benchmark data is lost / missing in the Benchmark box and I have to redo the benchmark for those algos again.

Can you fix that in the next update please so that the data does not get erased when these are disabled in Options > Algorithms, thanks.
Thanks for reporting this issue. I will take a look at this case. For the moment, you can workaround the issue by doing the disable on the algorithm in the Profit Profile instead.
2142  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 10, 2018, 07:23:06 PM
could you please add selection support for the zpool South East Asia  <sea> STRATUM SERVERS and blockmaster European servers (Please access these by using stratum+tcp://eu.blockmasters.co[:port] ) in the next release?

thanks
Thanks for your suggestion. I will add zpool SEA to the next release.

BlockMasters EU is already included in the latest development release.
2143  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 10, 2018, 07:13:35 PM
found a bug, @patrike.

automatic download of custom managed software does not work.
I can create a custom software and add all the download links, folder & executable names and so on to its properties. but then I can't enable that software in any of my profit profiles. when trying to save a profile with new managed software enabled, AM tells me, that I should click the "Configure" button and specify the path. basically it's locked with "Specify existing installation path" option selected, and I can't choose "automatic download" option at all.
I will take a look at this one - thanks for reporting it.

I have another feature in the pipeline where you will be able to use a C# script as a rule action, to set a time limited wallet/worker name on a profit profile. You will be able to run the rule on a schedule you define.
any updates on this?
please make me happy Smiley

thank you for your work.
This is implemented already, but not yet documented as it's quite low-level.

An example of how it can be used is the following C# script action, but I will have to provide some documentation for it before it's really useful
Code:
using AwesomeMiner.Components.ProfitSwitching.Pools;

public class ActionScript
{
private ContextProvider Context = ScriptManager.Context;

public bool Execute(List<IMinerBase> list)
{
// Specify duration for how long the changes should be used
const int DurationMinutes = 45;

// Pool configuration
SwitchingProfile swProfile = new SwitchingProfile();
swProfile.EnabledPools = OnlineServiceType.MiningPoolHub;
swProfile.MiningPoolHubWorker = "newuser.1";

Context.ProfitSwitcher.SetTemporaryProfitProfileSettings(list, DurationMinutes, swProfile);
return true;
}

}
hello patrike,
this script is broken in two last releases. every time I got an empty miner worker name after running it.
There is a change in the latest development releses for this.

Please remove this line
Code:
swProfile.MiningPoolHubWorker = "newuser.1";

You can replace it with lines like below. You always need the first "Clear" line, but then you can have one or more additional lines for each pool.
Code:
swProfile.PoolProviderList.Clear();
swProfile.PoolProviderList.Add(new PredefinedPoolProvider(OnlineServiceType.MiningPoolHub, "newuser.1"));
swProfile.PoolProviderList.Add(new PredefinedPoolProvider(OnlineServiceType.BlockMasters, "somewallet"));
swProfile.PoolProviderList.Add(new PredefinedPoolProvider(OnlineServiceType.AHashPool, "somewallet"));
2144  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 10, 2018, 07:10:22 PM
  - CoinCalculators.io setting for filtering of exchanges will still include coin values for coins without an exchange
I can not find this option
Maybe the description in the release notes wasn't too good here. It's not a new setting, but it's refering to when using the existing setting for CoinCalculators.io Exchange Filtering. When enabled, I received feedback that is was filtering away too much coin data where coins didn't have any exchange at all.
2145  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 08, 2018, 12:53:20 PM
Awesome Miner version 5.7.7 ( Development preview of 5.8 )

This is a small update from the development release made yesterday (5.7.6) where a few corrections are included together with updated versions of mining software (CryptoDredge, T-rex, TeamRedMiner, WildRig).
2146  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 07, 2018, 01:20:15 PM
Nice update Patrike. One question. The Power Usage is only show if i set "Distplay Profit in addition to revenue" in the general options. Is it normal or a bug?
Right now Awesome Miner only calculates the power usage/cost if profit calculations are enabled - but that's not very user friendly. So I would say it's a bug and I will correct this in the next release so you will be able to display Power without also showing Profit.
2147  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 07, 2018, 01:17:45 PM
Awesome Miner Version 5.7.6 ( Development preview of 5.8 )
 
  - Block Explorer configuration for wallet balance to allow balance unit of 1E-7 and 1E-24 to support a wider range of number formats
  

Thanks for update Patrike. But i think there's still something wrong with balance. For BCD, i set unit of 1E-7. When clicking on test button, i get the correct amount. But in balance tab, amount still appear with a unit of 1E-8.
Can you look at this ?
Sorry - I will correct that. Thanks for pointing out this issue.
2148  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 07, 2018, 01:17:12 PM
Thanks - I will include those in the next update.
2149  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 07, 2018, 10:10:59 AM
Awesome Miner Version 5.7.6 ( Development preview of 5.8 )
 Features
  - Significant speed optimizations for the Performance History feature
  - Performance History also includes estimated revenue and profit
  - Performance History export to CSV allows selection of data to export
  - The profit switching setting to ignore pools with no accepted shares can now be configured for up to 20 minutes (was 10 minutes previously)
  - Diagnostics includes information about MS VC++ runtime versions installed, as these runtimes are required by some GPU mining software
 Integration
  - Block Explorer configuration for wallet balance to allow balance unit of 1E-7 and 1E-24 to support a wider range of number formats
  - New algorithms added to the predefined Yiimp-based pools will automatically be available if the algorithm is known to Awesome Miner
  - BlockMasters pool configurable for region
  - Mining Dutch Lyra2REv2 profit unit adjusted to latest API changes
  - CoinCalculators.io setting for filtering of exchanges will still include coin values for coins without an exchange
  - Siacoin algorithm changed from Blake2b to Sia, which is a modified version of the Blake2b algorithm
 API
  - Added HTTP API for returning the assigned miners and users accounts for each user group (/api/groups/details)
  - A random HTTP API key can be generated with a button click in the Options dialog
 Rules
  - Triggers looking at hashrate and accepted shares can now be configured for looking back at statistics for up to 20 minutes (was 10 minutes previously)
  - The predefined trigger for Accept Progress will by default be set to 16 minutes (was 8 minutes previously) on new installations
 User interface
  - Display of power usage per miner group and as a total for all miners. Configurable via the Options dialog, General section.
  - Display of power usage for the selected Profit Profile on the Coins and Online Services tabs
  - Improved user interface for configuring predefined pools for the profit switcher and for custom wallets for miners
  - Additional coin images added
 Mining software
  - CryptoDredge 0.9.6
  - T-Rex miner 0.7.3
  - Z-enemy Miner 1.23
 Corrections
  - Improved detection of nVidia GPU driver version
  - Correction to scenario where user defined Online Services are being removed, to ensure no old statistics are listed on the Online Services tab
  - Correction to the Profit Profile properties, Override section, where the feature to add a new custom pool didn't work correctly in some scenarios
  - Correction to profit switching with TeamRedMiner where the pool changes wasn't performed correctly
  - Minor corrections

To get access to development versions, open the Options dialog in Awesome Miner. In the General section, enable Check for development versions. Then go to the Menu and click Check for updates

Direct download links
http://www.awesomeminer.com/download/setupdev/AwesomeMiner.msi
http://www.awesomeminer.com/download/setupdev/AwesomeMinerRemoteService.msi
2150  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 07, 2018, 09:40:09 AM
Hi Patrike,

i think there's a big problem with PHI2 algo, profit switching doesn't work,
and "phi2 pool Block Masters" there's on tab "Online Services", but
there isn't in "View Detailts - Profit Switching".

P.S. I'm using Teamredminer!

Bye
Awesome Miner is automatically showing all new algorithms on the Online Services tab, but doesn't automatically add it as a pool to the profit switcher (see Options dialog, Online Services) until I include it in an update.

This implementation will soon change where Awesome Miner automatically will make new pools (from the predefined yiimp-based pools) available without having to update to a later version.

Edit: I just checked and BlockMasters Phi2 should be in the list already. Is Phi2 selected in the Profit Profile you are using? Do you have any mining software that supports Phi2 enabled in the Profit Profile?

Hi Patrike,

i don't know why sometimes the profit switching doesn't work, but if i restart the miner, AwesomeMiner choose the right algo/coin to mine, i have only problem with phi2 algo.

This is a screenshot of View Details

https://drive.google.com/file/d/1Sxiq8hCGlgi48Sgo-0ODU-AoesdWqL2Z/view?usp=sharing

Thanks
I wonder if this could related to the Threshold setting not working as it should. Your 5% limit should have been passed in this case and a pool change should have been made. Do you get the same issue if you disable the Threshold feature?

Next time this happens, could you please send me your log file by mail and let me know the time of the issue - together with a good screenshot like the one your provided here? Thanks!

Mail to info@awesomeminer.com with new screenshot and log file.

Thanks
Thanks for sharing the logs. I've implemented a correction for this scenario with TeamRedMiner.
2151  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 07, 2018, 09:39:40 AM
@patrike - Please check Sia coin. Its getting $0 value from whattomine. The algo being reported is "Sia" from whattomine now.
Thanks - I will adjust Awesome Miner to this algorithm change.
2152  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 07, 2018, 09:39:17 AM
CryptoDredge 0.9.6 Nvidia Miner With Support for the X22i Algorithm
New z-enemy 1.23 Miner With Performance Optimizations for RTX 2080 and 2080 Ti
This will be included in the development release that will be made available soon.
2153  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 07, 2018, 09:38:35 AM
Hello @patrike, only as a reminder

For when Shit to mine as another coin supplier.

You will incorporate the possibility of choosing Exchange in the currencies. This I mean the exchanges that gives us for example Coincalculator. For me this is quite important, undermine the real price of where I'm going to sell.

I believe fervently, that a logical and big step would be for AM to get the data the same pages as always including Shit to mine, but then the prices get them separately through the APIS, just as AW CU does. In this way the data provider of currency will be the same, we can always choose the exchange. I do not say that it is easy or quick to do, but this would be a totally logical feature and that does not have the other programs. Apart it is very useful for the miner.

Another question Which is better for WTM to give an example. That thousands of computers with AM ask for data every few minutes, saturating their servers, that you get the data once per minute and provide it to us, obviously I suppose with the monthly subscription. Whenever it is mentioned that the currency is provided by WTM there will be no problem. Have you thought about it in this way to WTM and other coin providers ?, They will save on bandwidth and CPU of their servers, and you would give us a faster and closer value, and also complement their payment services.

This is like the subject of more detailed statistics. The day that you add in your payment services, price data every minute and much more complete statistics, then, me and thousands of other people, we will have to subscribe to your monthly payment services, I sincerely love it, and I think that It is a good for all, better data, prices and statistics, I therefore if I pay.

I am aware that I am asking for things that are a little bit outdated and that I have to adjust a lot of code and contact to negotiate with the data providers. But really those possible new features would make a huge difference for good in the use of the program and could distance even more from the competition
I've been in contact with the ShitToMine about the API, but I don't know what it will look like yet. Once it's made available I will of course consider making similar exchange-configuration as for CoinCalculators.

If I could decide myself how the coin statistics would be downloaded to Awesome Miner, I would like to have it centralized via the Awesome Miner cloud. As we discussed earlier the main issue here is that I don't own the data and I will have to discuss with the admin of these coin stats if it would be acceptable.

There will be some improvements to the mining statistics in Awesome Miner during the next few weeks.
2154  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 06, 2018, 09:59:17 AM
Please make sure Graft is on CryptoNight v8 in next release!
I think Coincalculators and WhatToMine recently updated this so it should have been updated automatically in Awesome Miner as well.
2155  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 06, 2018, 09:58:00 AM
T-Rex 0.7.3

Improve skunk, phi, polytimos; small improvements for x16r/s etc on some configurations. Performance improvements for Turing GPUs (20xx series)

Add functionality to return to the main pool after mining on failover ones (see "--back-to-main-pool-sec" launch parameter)
Handle "client.reconnect" stratum messages (used by MiningRigRentals)
Handle "clean jobs" stratum flag correctly (resulting in fewer stale jobs) - this feature is supported by coinblockers.com
Add "file" handler to API. Allows to create custom files in miner directory via API.
Add functionality to keep your failover pools separately in a config file. May be helpful if you need to load pools from file. (t-rex -c pools.json -a x16r <your usual parameters)

Bug fixes:
Remove assert on NULL rpath in Linux.
Fix average hashrate reporting when using large -N values.


Linux/Windows
https://github.com/trexminer/T-Rex/releases/tag/0.7.3


FTP mirror:
http://ftp://radio.r41.ru/t-rex-0.7.3-linux-cuda10.0.tar.gz
http://ftp://radio.r41.ru/t-rex-0.7.3-linux-cuda9.1.tar.gz
http://ftp://radio.r41.ru/t-rex-0.7.3-linux-cuda9.2.tar.gz
http://ftp://radio.r41.ru/t-rex-0.7.3-win-cuda10.0.zip
http://ftp://radio.r41.ru/t-rex-0.7.3-win-cuda9.1.zip
http://ftp://radio.r41.ru/t-rex-0.7.3-win-cuda9.2.zip
Thanks - I will include the latest T-rex, CryptoDredge and Z-enemy in a development release that will be made available later today or tomorrow.

What is good here is that the T-rex releases are now published on Github, making it easier for everyone to point to the latest versions.
2156  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 06, 2018, 09:45:01 AM
Hi Patrike,

i think there's a big problem with PHI2 algo, profit switching doesn't work,
and "phi2 pool Block Masters" there's on tab "Online Services", but
there isn't in "View Detailts - Profit Switching".

P.S. I'm using Teamredminer!

Bye
Awesome Miner is automatically showing all new algorithms on the Online Services tab, but doesn't automatically add it as a pool to the profit switcher (see Options dialog, Online Services) until I include it in an update.

This implementation will soon change where Awesome Miner automatically will make new pools (from the predefined yiimp-based pools) available without having to update to a later version.

Edit: I just checked and BlockMasters Phi2 should be in the list already. Is Phi2 selected in the Profit Profile you are using? Do you have any mining software that supports Phi2 enabled in the Profit Profile?

Hi Patrike,

i don't know why sometimes the profit switching doesn't work, but if i restart the miner, AwesomeMiner choose the right algo/coin to mine, i have only problem with phi2 algo.

This is a screenshot of View Details

https://drive.google.com/file/d/1Sxiq8hCGlgi48Sgo-0ODU-AoesdWqL2Z/view?usp=sharing

Thanks
I wonder if this could related to the Threshold setting not working as it should. Your 5% limit should have been passed in this case and a pool change should have been made. Do you get the same issue if you disable the Threshold feature?

Next time this happens, could you please send me your log file by mail and let me know the time of the issue - together with a good screenshot like the one your provided here? Thanks!
2157  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 04, 2018, 09:29:41 PM
So i am a satisfied user of awesome miner, last night i wanted to purchase another license since i loaded more miners , and then i found out that bitcoin payment is no longer an option!.

it is a little strange here, Awesome MINER does not accept crypto for payment ! and we are still waiting for mass adoption  Shocked
Thanks for your nice feedback.

Bitcoin payments was supported in the past, but had to be discontinued because there are unfortunately no good payment solutions out there for Bitcoin that automatically takes care of all VAT complexity in EU. I'm constantly pushing my current payment provider, Fastspring, to add Bitcoin support because they had it on their agenda earlier. I've also looked at a number of different providers that do support Bitcoin, but none of them are good enough or even understand what companies in EU requires in terms of VAT features to not have to do manual bookkeeping of every single transaction.

It's of course a bit embarrassing to do not a good solution for Bitcoin payments but I do hope to be able to support it in the future again.
2158  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 04, 2018, 09:21:58 PM
Hi Patrike,

i think there's a big problem with PHI2 algo, profit switching doesn't work,
and "phi2 pool Block Masters" there's on tab "Online Services", but
there isn't in "View Detailts - Profit Switching".

P.S. I'm using Teamredminer!

Bye
Awesome Miner is automatically showing all new algorithms on the Online Services tab, but doesn't automatically add it as a pool to the profit switcher (see Options dialog, Online Services) until I include it in an update.

This implementation will soon change where Awesome Miner automatically will make new pools (from the predefined yiimp-based pools) available without having to update to a later version.

Edit: I just checked and BlockMasters Phi2 should be in the list already. Is Phi2 selected in the Profit Profile you are using? Do you have any mining software that supports Phi2 enabled in the Profit Profile?
2159  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 04, 2018, 09:20:07 PM
@patrike

There is a pool, https://fairpool.pro with autoexchange. It's the same guy who owns https://fairmine.pro/. There are only a few minersand a few algos, but I've been mining a lot in Fairpool and I've never had any problems. It's a small pool but maybe it's an option to add.

Thanks
Thanks for the pool suggestions. These pools looked quite small so they will probably not be included by default for that reason. However, it should still be possible to add them manually:
https://support.awesomeminer.com/support/solutions/articles/35000086026-add-custom-yiimp-compatible-pools
2160  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 10000 miners on: November 04, 2018, 09:17:41 PM
Any possibility of adding Current Rev/Profit to the graph on the dashboard, or at least to the history collection? The hashrates arent helpful when you have multiple different models hashing at vastly different scales, and it's not really the #1 thing that matters anyway.
Good point.

There are a number of related changes in the pipeline right now. The Performance History feature will be 10-100 times faster in the next release (relevant when running larger scale mining operations). Revenue and Profit information will soon be added here as well. Going forward there will not be too long before you will have more mining insight for one or many selected miners where you also will get information about mining software, algorithms and pools being used over a period of time.

Once this is in place, I think the dashboard and charts should get some updates as well as you point out.
Pages: « 1 ... 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 [108] 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 ... 229 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!