Bitcoin Forum
June 17, 2024, 01:34:54 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Mining (Altcoins) / Re: PhoenixMiner 3.0c: fastest Ethereum/Ethash miner with lowest devfee (Windows) on: June 14, 2018, 11:01:33 PM
StreaMex,

You need to add a return or newline at the end of your code.

here is an example of my code:

Code:
string get_menu_request = "{\"id\":0,\"jsonrpc\":\"2.0\",\"method\":\"miner_getstat1\",\"psw\":\"" + _password + "\"}" + Environment.NewLine;
NetworkStream serverStream = clientSocket.GetStream();
byte[] outStream = System.Text.Encoding.ASCII.GetBytes(get_menu_request);
serverStream.Write(outStream, 0, outStream.Length);
serverStream.Flush();
2  Alternate cryptocurrencies / Mining (Altcoins) / Re: PhoenixMiner 2.9e: fastest Ethereum/Ethash miner with lowest devfee (Windows) on: May 17, 2018, 03:43:07 AM
Trying to get JsonRPC responses from Phoenix, having some serious issues, If someone could tell me what I did wrong on this I would greatly appreciate it, this code works perfectly fine for Claymore's but for PhoenixMiner it doesnt do anything.

Code:
			try
{
var clientSocket = new System.Net.Sockets.TcpClient();

if (clientSocket.ConnectAsync("127.0.0.1", 3337).Wait(5000))
{
string get_menu_request = "{\"id\":0,\"jsonrpc\":\"2.0\",\"method\":\"miner_getstat1\"}\n";
NetworkStream serverStream = clientSocket.GetStream();
byte[] outStream = System.Text.Encoding.ASCII.GetBytes(get_menu_request);
serverStream.Write(outStream, 0, outStream.Length);
serverStream.Flush();

byte[] inStream = new byte[clientSocket.ReceiveBufferSize];
serverStream.Read(inStream, 0, (int)clientSocket.ReceiveBufferSize);
string _returndata = System.Text.Encoding.ASCII.GetString(inStream);

if (_returndata.Length == 0)
{
throw new Exception("Invalid data");
}

Console.WriteLine(_returndata);


}
else
{

}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
Console.WriteLine(ex.StackTrace);
stats.ex = ex;
logger.LogWrite("Host socket exception: " + ex.ToString());
}


Appreciate the help.
3  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's miner ETH fee removed (Win 64bit only) on: October 16, 2017, 10:06:05 PM
decided to test this, ran on a machine that was doing 38Mh/sec (no wallet access) ran it for 1 hour exactly, what I noticed is that nanopool reported my rig online and reported hashrate of 38.1Mh/sec though actual now stats read as 0.0Mh/sec and my actual shares dropped, so I am pretty sure he is actually stealing your whole mining power to his own wallet.
4  Alternate cryptocurrencies / Mining (Altcoins) / Re: GPUPower - see how much power your gpus are using * nvidia only! on: July 31, 2017, 10:44:22 AM
BEFORE any new users click that link I would wait for some old timers to verify that link's contents. Would be great to catch a nice wallet trojan just in time for the hard fork.

No offense to the OP, but posts from a brand new user offering a new program should always be highly suspect until proven otherwise. Do your due diligence.

100% agree as I said before the mods are welcome to look at the source code.  I would be suspicious of newbies as well.
5  Alternate cryptocurrencies / Mining (Altcoins) / GPUPower - see how much power your gpus are using * nvidia only! on: July 31, 2017, 03:38:51 AM
Created a tool to read the total wattage use from the GPU's only, also can calculate cost per day and per month on the video card usage.

No it does not work on AMD, Nvidia only! it only takes into account the gpu's not motherboard and processor.  best option to find out what
your total watt usage is, is to get a plug in meter, though this tool is just a good estimation for those trying to see how much their GPU's
will take from the PSU as well.

This uses Nvidia's SMI utility that is it! nothing more nothing less, does not connect to anything internet wise or other application wise.
It reads the average watt usage per card and poll's every 3 seconds.

if a mod wants to see the source code I can provide this, just message me and I will make it available.

I do plan on adding to this tool more features in the future so I would ask the mods to keep it confidential as well.


Picture of the tool :



Link to download
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!