Search content
Sort by

Showing 2 of 2 results by xh0st
Post
Topic
Board Mining (Altcoins)
Re: SRBMiner-MULTI AMD & CPU Miner 0.7.0 - RX 6500/6800/6900
by
xh0st
on 24/04/2021, 17:56:12 UTC
V0.7.0
+ Reduced power consumption on 'autolykos2' algorithm for Ellesmere GPU's ~2-3%
+ Reduced power consumption on 'verthash' algorithm for Ellesmere GPU's ~5%
+ Reduced power consumption on 'verthash' algorithm for Vega GPU's ~10%
+ Performance increase on 'verthash' algorithm for Vega GPU's ~3%
+ Performance increase on 'verthash' algorithm for CPU's ( ~5% )
+ Added parameter '--verthash-dat-path'
+ Fixed 'verthash' algorithm stack smash issue
+ Fixed watchdog not triggering on dead GPU issue
+ Fixed crash on 'panthera' algorithm
+ Removed parameters : --gpu-watchdog-disable-mode, --watchdog-rounds
+ Minor bug fixes

Hello, i'm using the latest version and it's not working. SRBMiner-Multi-0-7-3-win64.zip from github


SRBMiner-MULTI.exe -disable-gpu --algorithm verthash --pool stratum+tcp://p2p-spb.xyz:9171 --wallet Vad2R5RuZmGrUuCzX7wvmXvQuEypdshorN --password x

[2021-04-24 20:52:56] Enable huge-pages to increase CPU miner hashrate
[2021-04-24 20:52:56] Follow the steps from Help\Other\Enable-Huge-Pages.txt
[2021-04-24 20:52:56] Run miner as administrator to increase CPU hashrate
[2021-04-24 20:52:56] 4 CPU core/s - 4 thread/s detected
[2021-04-24 20:52:56] Using 2 thread/s for CPU mining
[2021-04-24 20:52:58] PARSE error: Could not convert 'sHexNonce1' [verthash]
[2021-04-24 20:52:58] Reconnecting to p2p-spb.xyz:9171 in 3 seconds [verthash]
[2021-04-24 20:53:01] PARSE error: Could not convert 'sHexNonce1' [verthash]
[2021-04-24 20:53:01] Reconnecting to p2p-spb.xyz:9171 in 3 seconds [verthash]
[2021-04-24 20:53:04] PARSE error: Could not convert 'sHexNonce1' [verthash]
[2021-04-24 20:53:04] Reconnecting to p2p-spb.xyz:9171 in 3 seconds [verthash]
[2021-04-24 20:53:07] Socket connection could not be established [verthash]
[2021-04-24 20:53:07] Reconnecting to p2p-spb.xyz:9171 in 3 seconds [verthash]
[2021-04-24 20:53:10] PARSE error: Could not convert 'sHexNonce1' [verthash]
[2021-04-24 20:53:10] Reconnecting to p2p-spb.xyz:9171 in 3 seconds [verthash]
[2021-04-24 20:53:13] Socket connection could not be established [verthash]

SRBMiner-MULTI.exe -disable-gpu --algorithm verthash --pool hub.miningpoolhub.com:20534 --worker xh0st.1 --password x
[2021-04-24 20:47:08] Enable huge-pages to increase CPU miner hashrate
[2021-04-24 20:47:08] Follow the steps from Help\Other\Enable-Huge-Pages.txt
[2021-04-24 20:47:08] Run miner as administrator to increase hashrate
[2021-04-24 20:47:09] 4 CPU core/s - 4 thread/s detected
[2021-04-24 20:47:09] Using 2 thread/s for CPU mining
[2021-04-24 20:47:10] Job received [117e] block height 1549226 [verthash][0]
[2021-04-24 20:47:10] Invalid login [verthash]
[2021-04-24 20:47:10] Couldn't login to pool.. [verthash]
[2021-04-24 20:47:10] Socket error : 10004 [verthash]
[2021-04-24 20:47:10] Reconnecting to hub.miningpoolhub.com:20534 in 3 seconds [verthash]

verthash.dat It's in cache folder. verthash it's generated by vertcoin-qt.exe from %AppData%/Vertcoin

Post
Topic
Board Bitcoin Discussion
Re: == Bitcoin challenge transaction: ~100 BTC total bounty to solvers! ==UPDATED==
by
xh0st
on 04/04/2021, 13:25:28 UTC
This is my python script for searching puzzle 64 it's generating an .bat file with  random keyspace between puzzle64 keyrange. I'm using vanity + bitcrack

Code:
# Xh0st Keyspace Puzzle 64 Random
# Made by Andrei Melek

import random

file = open('random.bat', 'w')


file.write(":while1" + '\n')
for x in range(100000):
             
    low  = 0x80000000000
    high = 0xfffffffffff
    val = str ( hex ( random.randrange( low, high ) ) )[2:]
    start = val + "00000"
    end = val + "fffff"
    file.write("start Vanity.exe -o out.txt --keyspace " + start +":" + end + "  16jY7q" + '\n' + "timeout /t 20 /nobreak" + '\n' + "taskkill /im Vanity.exe /f" + '\n' + "timeout /t 1 /nobreak" + '\n')
   
file.close()

just place vanity + bitcrack in the same folder name vanity.exe an run the .bat file

Code:
:while1
start Vanity.exe -o out.txt --keyspace e641fa3965c00000:e641fa3965cfffff  16jY7q
timeout /t 20 /nobreak
taskkill /im Vanity.exe /f
timeout /t 1 /nobreak
start Vanity.exe -o out.txt --keyspace a7de69a79ef00000:a7de69a79effffff  16jY7q
timeout /t 20 /nobreak
taskkill /im Vanity.exe /f
timeout /t 1 /nobreak
start Vanity.exe -o out.txt --keyspace 9c547761d2b00000:9c547761d2bfffff  16jY7q
timeout /t 20 /nobreak
taskkill /im Vanity.exe /f
timeout /t 1 /nobreak

Good luck guys