Bitcoin Forum
May 26, 2024, 12:17:22 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 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 »
1641  Alternate cryptocurrencies / Pools (Altcoins) / Re: █▓▒░-< [ZPOOL.CA][Hash Rentals][Multipool] The miners multipool >-░▒▓█ on: May 10, 2017, 10:34:53 AM
Anyone who doubts that the pool doesn't pay out regularly;  should check the BTC address in my batch files: 1PHSDYvVp6HpqtuUPocK41DrdeHbbezaeP

Lots of history there.  They are consistent and reliable payments from zpool.

All complaints of payments (aside from the random issue that does pop up) are from people not understanding what they negate to understand or read on the homepage;  that if you wanna get paid in a certain coin OTHER THAN BITCOIN, you must wait for the pool to mine enough to pay people out from what has been mined.  If it's a coin that the pool hasn't mined much;  you have to wait for enough to satisfy all payout requirements:  in turn. 
Sorry, It's the nature of how it works. 

The reason for this is simple:  exchanges don't trade one altcoin for another;  only bitcoin for an altcoin.   Our pool doesn't trade backwards as we mine no bitcoin, we only exchange FOR it as that is the regular medium that exchanges work in.   I have yet to see one pool that exchanges everything only for something like Digibyte (DGB)...


So;  this is the inherent reason the pool will only pay out from what it mines.

Did you look on the pool's stats and see how often blocks were found for your selected coin in the past?  a huge list is available to see if it will meet your needs.  If its a low value block, and found not often... it doesn't sound like it's profitable to mine that often....

Mining from a pool is not meant for people who want to mine a specific coin because its price just shot up on the market.
The explanation to why your complaint is invalid is clearly printed on the homepage.  For exact heuristics;  see the pool code.  It is publically available.


I really wish I could delete your idiocracy.  You won't even listen to us.   I am trying to help.  I hope this gets through to you.
 
1642  Alternate cryptocurrencies / Mining (Altcoins) / Re: .BAT to reset network upon failure on: May 10, 2017, 04:12:32 AM
You are very welcome.

I myself am enjoying seeing no dips in my hashrate anymore. Smiley

Thanks for posting the your edit; may help others as well.

This is a huge step towards my "set and forget" gpu mining "satellite stations" plan a friend and I are putting together.
1643  Alternate cryptocurrencies / Mining (Altcoins) / Re: USB ASIC for altcoins? on: May 09, 2017, 11:30:06 PM
you can mine altcoins with sha256;  with pools like zpool.   Tons of coins, one miner connected.  Simple.   SHA256, X11, SCRYPT, and a few CPU algos as well.

You could definitely feel the trickle of profit from them.  Every now and then Ill pull out some orbs and plug em in if I have the spare space or I am wanting some warmth.
1644  Alternate cryptocurrencies / Mining (Altcoins) / .BAT to reset network upon failure on: May 09, 2017, 09:29:05 PM
I have had a personal internet issue;  My main location is out in the boonies, which only allows for cellular high speed.  Next choice was satellite, which is plainly never gonna happen....  So, cellular it is.

Now, it works all fine and dandy, but when the area gets flooded with traffic (interstate backed up for instance), the connection seems to timeout and stay unresponsive until I disconnect, then reconnect the cellular adaptor from the cellular data network.  Which, in-turn, requires me to disconnect my VPN service (openVPN) before and reconnect it after the cellular disconnect as well.

Over time this has pointed me towards problems with connection handling at my local node.    So;  how did I remedy this?  Same as everything else in my life.....  a batch file.  If I were working for the cellular provider;  I'd fix the actual problem.  Till it's fixed, I have this.

They belong in the root of C:\     Yes;  Because admin priv is necessary anyways.
Requires Windows Powershell. (Typically built-in to windows)

BETA TEST VERSION Re-arranged some things.  Changed disconnect/reconnect as to require only one file for the whole batch.  Now there is a powershell script for people with openVPN that properly and cleanly shuts down the connection and application.  This is for inactive systems;  as there is a "foreground sent" enter key by the powershell script to close a dialogue.  The powershell script can be omitted, and your own VPN string inserted in place if you don't use openVPN (see a post comment just a few below the top post for an example).  So far tested on Win7 x64 and Win 10 x64.
C:\rebooter.bat
Code:
@ECHO OFF
SET OVERALLCOUNT=0
SET FAILEDPINGS=0
SET COUNT1=0
SET COUNT2=0
SET COUNT3=0
SET COUNT4=0
SET COUNT5=0
SET COUNT6=0
SET COUNT7=0
SET C1=47.35.23.146
SET C2=www.google.com
SET C3=www.microsoft.com
SET C4=www.facebook.com
SET C5=www.myspace.com
SET C6=sfbay.craigslist.org
SET C7=garlic.com
SET REBOOTCOUNT=0
GOTO FIRSTSTART
:START
SET /A OVERALLCOUNT=%OVERALLCOUNT%+1
:FIRSTSTART
CLS
ECHO Ping loops since reboot:    %OVERALLCOUNT%
ECHO Failed pings since reboot:  %FAILEDPINGS%
ECHO Total number of netReboots: %REBOOTCOUNT%
ECHO.
ECHO Total Ping Breakdown:
ECHO.
ECHO %COUNT1% : %C1%
ECHO %COUNT2% : %C2%
ECHO %COUNT3% : %C3%
ECHO %COUNT4% : %C4%
ECHO %COUNT5% : %C5%
ECHO %COUNT6% : %C6%
ECHO %COUNT7% : %C7%
choice /c q /n /t 60 /d q
ping %C1% -n 1 -w 5000
SET /A COUNT1=%COUNT1%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C2% -n 1 -w 5000
SET /A COUNT2=%COUNT2%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C3% -n 1 -w 5000
SET /A COUNT3=%COUNT3%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C4% -n 1 -w 5000
SET /A COUNT4=%COUNT4%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C5% -n 1 -w 5000
SET /A COUNT5=%COUNT5%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C6% -n 1 -w 5000
SET /A COUNT6=%COUNT6%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C7% -n 1 -w 5000
SET /A COUNT=%COUNT7%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C1% -n 1 -w 5000
SET /A OVERALLCOUNT=%OVERALLCOUNT%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
:JUMP
ECHO Internet connection down, Restarting cellular adaptor...
SET /A REBOOTCOUNT=%REBOOTCOUNT%+1
SET OVERALLCOUNT=0
SET FAILEDPINGS=0
powershell -executionPolicy bypass -file "C:\closeVPN.ps1"
ipconfig /flushdns
netsh interface set interface "Cellular" DISABLED
netsh interface set interface "Cellular" ENABLED
ECHO Restarting VPN Service...
START c:\Progra~1\OpenVPN\bin\openvpn-gui.exe --connect JaredKaragen.ovpn
ECHO VPN Service Started.
choice /c q /n /t 5 /d q
GOTO START

C:\closevpn.ps1
Code:
$sig = @"
        [DllImport(`"user32.dll`")]
           public static extern IntPtr FindWindow(string className, IntPtr useZero);
        [DllImport(`"user32.dll`")]
           public static extern int SendMessage(IntPtr hwnd, uint msg, IntPtr wParam, IntPtr lParam);
        [DllImport(`"user32.dll`")]
           public static extern void keybd_event(Byte bVk, Byte bScan, UInt32 dwFlags, UInt32 dwExtraInfo);
        [DllImport(`"user32.dll`")]
           public static extern int PostMessage(IntPtr hwnd, uint msg, IntPtr wParam, IntPtr lParam);
"@
$win32_methods = Add-Type -MemberDefinition $sig -Name "Win32FindWindow" -Namespace Win32Functions -PassThru
$h = $win32_methods::FindWindow("OpenVPN-GUI", 0)
$win32_methods::PostMessage($h, 0x10, 0, 0)
sleep 1
##### simulate enter key down VK_ENTER = 0xD, scan code = 0x9c
$win32_methods::keybd_event(0xD, 0x9c, 0, 0)
##### simulate enter key up: for this change the flags to KEYEVENTF_KEYUP = 0x2
$win32_methods::keybd_event(0xD, 0x9c, 0x2, 0)





*UPDATED 6/14/2017*
 Cleaned up code and added counters with display.  Updated timer values and streamlined the redundancy.
C:\netWatch.bat
Code:
@ECHO OFF
SET OVERALLCOUNT=0
SET FAILEDPINGS=0
SET COUNT1=0
SET COUNT2=0
SET COUNT3=0
SET COUNT4=0
SET COUNT5=0
SET COUNT6=0
SET COUNT7=0
SET C1=10.8.0.1
SET C2=www.google.com
SET C3=www.microsoft.com
SET C4=www.facebook.com
SET C5=www.myspace.com
SET C6=sfbay.craigslist.org
SET C7=garlic.com
SET REBOOTCOUNT=0
GOTO FIRSTSTART
:START
SET /A OVERALLCOUNT=%OVERALLCOUNT%+1
:FIRSTSTART
CLS
ECHO Ping count since reboot:    %OVERALLCOUNT%
ECHO Failed pings since reboot:  %FAILEDPINGS%
ECHO Total number of netReboots: %REBOOTCOUNT%
ECHO.
ECHO Total Ping Breakdown:
ECHO.
ECHO %COUNT1% : %C1%
ECHO %COUNT2% : %C2%
ECHO %COUNT3% : %C3%
ECHO %COUNT4% : %C4%
ECHO %COUNT5% : %C5%
ECHO %COUNT6% : %C6%
ECHO %COUNT7% : %C7%
choice /c q /n /t 60 /d q
ping %C1% -n 1 -w 1000
SET /A COUNT1=%COUNT1%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C2% -n 1 -w 1000
SET /A COUNT2=%COUNT2%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C3% -n 1 -w 1000
SET /A COUNT3=%COUNT3%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C4% -n 1 -w 1000
SET /A COUNT4=%COUNT4%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C5% -n 1 -w 1000
SET /A COUNT5=%COUNT5%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C6% -n 1 -w 1000
SET /A COUNT6=%COUNT6%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C7% -n 1 -w 1000
SET /A COUNT=%COUNT7%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C1% -n 1 -w 1000
SET /A OVERALLCOUNT=%OVERALLCOUNT%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ECHO Internet connection down, Restarting cellular adaptor...
SET /A REBOOTCOUNT=%REBOOTCOUNT%+1
SET OVERALLCOUNT=0
SET FAILEDPINGS=0
START C:\netReset.bat
choice /c q /n /t 120 /d q
GOTO START

C:\netReset.bat
Code:
@ECHO OFF
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq openvpn-gui.exe"') DO IF %%x == openvpn-gui.exe TASKKILL /F /IM openvpn-gui.exe
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq openvpn.exe"') DO IF %%x == openvpn.exe TASKKILL /F /IM openvpn.exe
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq openvpnserv.exe"') DO IF %%x == openvpnserv.exe TASKKILL /F /IM openvpnserv.exe
choice /c q /n /t 1 /d q
powershell -Command "Restart-NetAdapter -Name "Cellular""
ECHO Restarting VPN Service...
START c:\Progra~1\OpenVPN\bin\openvpn-gui.exe --connect JaredKaragen.ovpn
ECHO VPN Service Started.
EXIT

To create these files, open a command prompt window with admin rights,  go to the root of "C:\" , and type "notepad netWatch.bat".  When notepad loads it will tell you that the file is not found and ask if you want to create it.... this is how.   Be sure you do not save it as a text file.

To run netWatch.bat, and netReset.bat, you need admin privileges.  
You must create a .lnk to a random file;  and point that new .lnk at the batch file "netWatch.bat", and in "Advanced options" check the box to have it "Run as Administrator".  There is no way to run this powershell command without admin priv.

Use this new .lnk to run netWatch.bat

I had several crazy issues I can not explain, which required me to run the batch in a very strange way (one batch triggering another) because when it would reach the end of the loop (after using powershell), powershell didn't seem to ever close cleanly and it would leave me back at a prompt;  instead of looping to the start of the code.   Thus the reason it looks like that.  All good, it works still.

To configure this for your adaptor, and visit the "Network: Change Adaptor Settings" window that lists the active and inactive network adaptors.   Give it a custom name now or use the current one, just know it's exact name.  
Mine in the batch is "Cellular".  
Sometimes it's "Ethernet 2", "Wireless" etc....

if you don't use openVPN... I suggest commenting out those lines via adding "REM " in front of those lines in netReset.bat or removing them.  I can help you if necessary.

You can see how the primary batch pings multiple different locations, and if there's a valid response along the way, it starts over and waits to check again.
You can use your own choices for IP addresses/domain names.

All in all, this should be a pretty clean template for making a network adaptor reset tool.   It is sooooooo nice that my machine automatically fixes itself now when I am not home.    It has worked and done its job several times already...    I think times need to be lengthened... but there's some very strange behavior when my network adaptor needs reset.  sometimes one miner stays online; but I can't visit any webpages on it or use the internet on any other machine.... very strange stuff;  or no ping response yet it can still query DNS for the IP to ping....(and all DNS caching is removed on my entire network chain so its definitely not cached).  Its been a pain; but doesn't happen often.... usually...
1645  Alternate cryptocurrencies / Pools (Altcoins) / Re: █▓▒░-< [ZPOOL.CA][Hash Rentals][Multipool] The miners multipool >-░▒▓█ on: May 09, 2017, 02:36:29 AM
nope, only exclude an algo.
1646  Alternate cryptocurrencies / Mining (Altcoins) / Re: NemosMiner-v1.7.2 multi algo profit switching NVIDIA miner for MPH & ZPOOL on: May 09, 2017, 12:15:12 AM
if they are same generation of cards;  it scales the same.

the scale of hashrate between 960-980ti is pretty linear when compared to the scale of a 1060-1080....   As long as you match generation; keep all the normalizations relative to the most present card in your system (if u have 2 1070, choose the 1070 normalization, etc).  I always pick the normalizations for the highest tiered card in the system.  My machine with a 960, and 980 gets the 980 norm.

I use my 1070 normalization on all of the 1080+ rigs I manage.
1647  Alternate cryptocurrencies / Pools (Altcoins) / Re: █▓▒░-< [ZPOOL.CA][Hash Rentals][Multipool] The miners multipool >-░▒▓█ on: May 09, 2017, 12:10:43 AM
you might wanna consider why it was mining that coin at that instance... most likely exchange rate is high for some reason, or the diff dropped on that coin enough to make throwing some hash at it worth it.

It's not a problem with the pool;  it's the nature of the beast.  It is working correctly;  exactly as its programmed to do, not as you think it should be configured...  =/

Just like the profitability estimate;  it initially shows you what people are selling for as an earned value;  but when its sold;  the buys could be on the opposite side of the spectrum and are lower than the sell orders (typical market).  It would be less noticeable if it were configured as only counting the low (purchase orders), that way the highs are felt in a better light.
1648  Alternate cryptocurrencies / Pools (Altcoins) / Re: █▓▒░-< [ZPOOL.CA][Hash Rentals][Multipool] The miners multipool >-░▒▓█ on: May 08, 2017, 10:35:09 PM
ok, you guys don't get it.  the pool TTF is a guess based on COMBINED POOL HASHRATE.  Not that one coin's hashrate the pool is diverting to it.


You don't calculate your hashrate based on TTF ever;  because it's a floating variable based on hashrate beyond your own.  This is not how you calculate things based on YOUR hashrate.


you calculate profitability based on your pool calculated hashrate, and the average of algo over the same period to time;  the longer the period of time, the more stable the calculation is.  Luck always will be there, so you can't exactly account for it, just figure plus or minus 15-20%.

not to be calculated by "how long it could theoretically take under a completely different set of circumstances/hashrate to find a block in just one coin of many that are mined on that algo".
1649  Alternate cryptocurrencies / Mining (Altcoins) / Re: Fourth alt coin thread last three got oversized. on: May 08, 2017, 10:14:14 PM
Recently;  I don't spend over 10 sat....   unless the short and long term graph is promising (movement both ways).  I have before, but I don't anymore really.
I'm not in it for the short term big gains, I am long-balling it.

If I see a coin for 1 or 2 sat;  Ill look at it;  see what the exchange's traded supply is;  (If there's a 40BTC wall at 2 sat, never will I ever touch that for example)

And I will also look into the premine and coin supply of what I want to buy (when spending over 0.001BTC).  If I am just spending 0.0001-0.0003  Ill take it on chance without doing research past looking at supplies on the exchange and trade prices/volume.

So far  I have done surprisingly well;  No giant profits, but then again, no giant investments either, as I have only started to divert my signature funds, to use on yobit's exchange instead of xfer to my main wallets.... so no loss.... ever.

I have made two bad purchases;  one was a coin that just has slowly fallen off (5000sat at time of 4mbtc purchase), and another that is slowly dwindling to this day.  The first one I got paid back (break even) as it got a pump again one week after dropping... so (hopefully) the next pump, I should sell off those coins for an order that i'm almost sure will go through.... long term, and the other, if I loose the 0.001btc, oah well.

No huge loss.

1650  Alternate cryptocurrencies / Mining (Altcoins) / Re: Help with powering up 6 GPUS please! (Ethereum Mining) on: May 08, 2017, 10:05:18 PM
The third identical thread i've seen on page 1.


please


DONT SPAM.


It's this activity that makes people like me;  the ones that that readily help people in your situation;  keep scrolling and not care to answer;  because for fear if I do answer;  you will act like this directly to my PM box or even worse.

So knock it off; and kick rocks.   In the kindest way.
1651  Alternate cryptocurrencies / Mining (Altcoins) / Re: NemosMiner-v1.7.2 multi algo profit switching NVIDIA miner for MPH & ZPOOL on: May 06, 2017, 10:37:25 AM
I noticed before, I think when overclocking/underclocking certain video cards, that some versions of miner apps/algos would cause the video card to go into P5 or P8 state;  severely impacting performance; requiring a reboot or hard reset of the driver... I.E. intervention.

See what algo it was switching to and from, try and narrow it down by disabling ones it was switching between one at a time... might help.  I found that neoscrypt caused it the most.
1652  Alternate cryptocurrencies / Mining (Altcoins) / Re: Fourth alt coin thread last three got oversized. on: May 06, 2017, 09:55:05 AM
hey everyone... I know it's a bit off-topic but was wondering if anyone here is using the Ledger Nano-S hardware wallet to store ETH/BTC.  I've got one coming tomorrow and was just wondering if there are any gotchas or things to look out for before moving some coins onto it.

I have a Ledger Wallet....  I love it.

Recovery mechanism is nice;  Easy to access via Chrome app.   All spends are 2FA or more (depends on how you set it up).

All done on-device.  It's my cold storage, along with a paper self generated vanity second one.
1653  Alternate cryptocurrencies / Mining (Altcoins) / Re: Help please? LKTEC usb miners on: May 06, 2017, 09:45:38 AM
Glad you got it sorted.  Knew it would be something simple.
1654  Alternate cryptocurrencies / Mining (Altcoins) / Re: Help please? LKTEC usb miners on: May 05, 2017, 09:41:44 PM

Should be:
Mine.bat
Code:
./cgminer.exe --scrypt -u Brandon1.1 -p 1 -o stratum+tcp://asic.give-me-coins.com:4444 --clock 200 --chips 1 -S //./COM29 //./COM4 //./COM6
pause


Should be like that I think;  maybe separated by a comma instead of a space....   can't remember.  Just plug em all in, round up all the com port numbers, add them to the batch, and it should read them all in one instance of cgminer.  try it my way first, then the other way next if no dice.
1655  Alternate cryptocurrencies / Mining (Altcoins) / Re: System keeps crashing after some hours of minning on: May 05, 2017, 09:35:13 PM
You missed to mention the most important part and the mostly causing this problem the power supply , it could be an insufficient power issue.

^^^^^ This.

Also an overloaded circuit/low line voltage.   The line voltage at the supply should be checked while mining....
1656  Alternate cryptocurrencies / Mining (Altcoins) / Re: How do I make a cgminer bat to mine Quark, with a GTX 1070? on: May 05, 2017, 09:33:40 PM
Don't use cgminer.  use ccminer.

Any specific reason you want to mine quark?  Skein has a LOT better profit; especially if you use the ccmineralexis78 build.

Hope it helps.
1657  Alternate cryptocurrencies / Mining (Altcoins) / Re: iBelink DM11G - 10800mhs - $6750 - UNMODERATED - LEGAL NEWS on: May 05, 2017, 09:24:17 PM
There are lots of red flags popping up everywhere about this whole deal.

To comment;  nice to put a photo to the faces.

still; even now; I see no further evidence of an actual product.... (look at how pandaminer started out then acted;  at least they responded kindly and promptly for more info/specs/photos/videos/etc...)


Seeing posts hit the moderated thread then be deleted;  when its a very reasonable statement or request.... is absurd.
Why are you guys hiding honest opinions and comments? 
Why did the price of this group buy fluctuate by ~15% in the course of less than a week?


You are making profit for your efforts on these miners;  you must accept the legal requirements of doing so.  There are rules about doing business in the US, and there are also rules about import/export as well; which are clearly being avoided.  Anyone can see that.


I myself wouldn't touch this deal with a 50 foot pole.  No way in hell.


If people were open, up front, and moreover courteous about dealing with the issues stemming from the behaviors they are exhibiting; Things would be a LOT different; and we would have a LOT more knowledge about what the real deal actually is.  Instead people make things worse by trying to "save face" instead of just produce and wait for a response.

You can't blame someone for wanting transparency; instead of being forced to blindly trust some historically inconsistent and shady practices.
1658  Alternate cryptocurrencies / Pools (Altcoins) / Re: █▓▒░-< [ZPOOL.CA][Hash Rentals][Multipool] The miners multipool >-░▒▓█ on: May 05, 2017, 07:51:00 AM
Can anyone help me understand the difference between the hash rates on my miner and the hash rates displayed on the pool?

I think pool is a 5 minute average. The miner was running for much longer than 5 minutes.

Is there anything I can do to get the pool to match? I know the pool shows % share, is there a way the pool can display accepted shares?







I dont think the pool shows its calculation.  you should really read up on how the pools calculate hashrate based on share size/frequency....  then if brave enough look at the yiimp(i think, or is it yaamp?) pool code to see how its actually being calculated.  It varies in the exact same way that luck to find a high share varies.   "Statistical probability" averaged over X time.....

I typically see my hashrate fall within the guidelines.  Sometimes you are fed a run of lucky shares and hashrate reports high for a while.... that's luck...
1659  Alternate cryptocurrencies / Mining (Altcoins) / Re: Help please? LKTEC usb miners on: May 05, 2017, 05:44:48 AM
I'll pm you and update this post when I get back to my pc.

Should be simple to remedy.

*edit*

Mine.bat
Code:
./cgminer.exe --scrypt -u Brandon1.1 -p 1 -o stratum+tcp:asic.give-me-coins.com:4444 --clock 200 --chips 1 -S //./COM29

Should be:
Mine.bat
Code:
./cgminer.exe --scrypt -u Brandon1.1 -p 1 -o stratum+tcp://asic.give-me-coins.com:4444 --clock 200 --chips 1 -S //./COM29
pause

notice the missing // in your stratum address.


Now it won't also auto-close the batch and you'll read any error messages.


Be sure to check your com port in the device manager (for that device), if necessary zadig the driver (i think zadig comes on the usb as well, so if it does, learn how it works and use it), then update the batch with the edit, as well as the corrected com port.   Be sure upon reboot the com port doesn't change.  I had one that changed back and forth every reboot, annoying.
1660  Alternate cryptocurrencies / Pools (Altcoins) / Re: █▓▒░-< [ZPOOL.CA][Hash Rentals][Multipool] The miners multipool >-░▒▓█ on: May 04, 2017, 07:36:24 AM
Gotcha.

My solution is a coinbase address for rx.  Works like a champ for me.
Pages: « 1 ... 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!