Author

Topic: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 - page 978. (Read 2171083 times)

hero member
Activity: 560
Merit: 500
absolutely

i have seen it but i don't trust it seen as that is the first post the guy has made. it could contain anything

Someone has to go through the code to make sure it's legit.
hero member
Activity: 518
Merit: 500

i have seen it but i don't trust it seen as that is the first post the guy has made. it could contain anything

Someone has to go through the code to make sure it's legit.
hero member
Activity: 620
Merit: 500

i have seen it but i don't trust it seen as that is the first post the guy has made. it could contain anything
legendary
Activity: 1582
Merit: 1019
011110000110110101110010
received PM from nicehash.com
would it cool if we can rent/lease disk space on nicehash ?
what do you think, should we do this ?



Would be great if cost was reasonable. Gouging = not cool
hero member
Activity: 1400
Merit: 505
I am mining at burst-pool.cryptoport.io but I get this error



{"baseTarget":"8011203","height":"9346","generationSignature":"094196fa421af7d84
399dc8f70812a5111d1060a367eeaabd8e12b70815fc3e2"}
{"baseTarget":"8011203","height":"9346","generationSignature":"094196fa421af7d84
399dc8f70812a5111d1060a367eeaabd8e12b70815fc3e2"}
{"baseTarget":"8011203","height":"9346","generationSignature":"094196fa421af7d84
399dc8f70812a5111d1060a367eeaabd8e12b70815fc3e2"}
New best: 8848628598514937831:4303067
Submitting share
Error: Failed to submit nonce
Error: Unable to get mining info from wallet :http://burst-pool.cryptoport.io/bu
rst?requestType=getMiningInfo
Error: Unable to get mining info from wallet :http://burst-pool.cryptoport.io/bu
rst?requestType=getMiningInfo



Is it because all miners submit new shares at once when a block is found and the server cant handle it?

I have got some payouts so it works but maybe not all shares are received so I am getting less than I should...

I only seem to be getting the error when submitting shares shortly after a new block has been found

have you update ur miner ?

please anything related to that pool, post here -> https://bitcointalksearch.org/topic/pool-poolburstcoinio-no-deadline-limit-instant-payout-769473
hero member
Activity: 644
Merit: 500
received PM from nicehash.com
would it cool if we can rent/lease disk space on nicehash ?
what do you think, should we do this ?



I think this is excellent!

We should all Tweet it as well, get it going quick!

+1!
And the best part of the roadmap is: Forget Anon! Amazing. Goodbye anon coins.
full member
Activity: 154
Merit: 100
Add me on Twitter! @AnonOnAMoose
received PM from nicehash.com
would it cool if we can rent/lease disk space on nicehash ?
what do you think, should we do this ?



I think this is excellent!

We should all Tweet it as well, get it going quick!
hero member
Activity: 1400
Merit: 505
received PM from nicehash.com
would it cool if we can rent/lease disk space on nicehash ?
what do you think, should we do this ?

full member
Activity: 145
Merit: 100
is there a way to find out where a plot ended its last nonce? my pc rebooted half way through 1tb plotting :-(
NoncesInFile = FileSize / 256kB
sr. member
Activity: 434
Merit: 250
I am mining at burst-pool.cryptoport.io but I get this error



{"baseTarget":"8011203","height":"9346","generationSignature":"094196fa421af7d84
399dc8f70812a5111d1060a367eeaabd8e12b70815fc3e2"}
{"baseTarget":"8011203","height":"9346","generationSignature":"094196fa421af7d84
399dc8f70812a5111d1060a367eeaabd8e12b70815fc3e2"}
{"baseTarget":"8011203","height":"9346","generationSignature":"094196fa421af7d84
399dc8f70812a5111d1060a367eeaabd8e12b70815fc3e2"}
New best: 8848628598514937831:4303067
Submitting share
Error: Failed to submit nonce
Error: Unable to get mining info from wallet :http://burst-pool.cryptoport.io/bu
rst?requestType=getMiningInfo
Error: Unable to get mining info from wallet :http://burst-pool.cryptoport.io/bu
rst?requestType=getMiningInfo



Is it because all miners submit new shares at once when a block is found and the server cant handle it?

I have got some payouts so it works but maybe not all shares are received so I am getting less than I should...

I only seem to be getting the error when submitting shares shortly after a new block has been found
member
Activity: 79
Merit: 10
today i always get this error, but earlier plotting is good, what is this?
i use 64bit java, try to raise xmx but 12000 is error too
sr. member
Activity: 458
Merit: 250
beast at work


Is this error normal? I havent submitted any valid share yet so i dont think i can see coins in my wallet yet.. just want to make sure im mining correctly. Thanks for taking time to answer mate. Much appreciated.

yes
newbie
Activity: 14
Merit: 0
Noob here, sorry for asking stupid questions, but i'm trying to make this happen.

When do you see your first bursts in your wallet? because i have been mining a while and nothing has come frome it in the Mined Balance section. I have done everything right, i'm still plotting but i'm mining on what i have plotted allready, shouldn't that give me some burst? I'm in the pool mine.

how much GB are you using? Solo or Pool ?!

My current pool is at 200gb in pool, i have about 1tb that hasn't finished pooling yet.

My current plot is at 200gb, i have about 1tb that hasn't finished plotting yet. I'm mining in pool on this IP: http://178.62.39.204:8121

you should be getting around ~200 Burst/day. wait for 3 to 6 hrs and check your balance and shares in http://178.62.39.204:8121/balance

Ok thanks, i will wait and hopefully see something later. Regarding the rest of the plots, is it possible to transfer the file when the plotting is done, will the mine accept them or do i have to change something.
sr. member
Activity: 458
Merit: 250
beast at work
Here's a quick script to generate multiple smaller plots. Hope this helps.

linux:
Code:
#!/bin/bash
#echo "Bash version ${BASH_VERSION}..."
clear

id=put_here_your_numerical_id
howManyNounces=40960
stagger=4096
filesToGenerate=15
cpu=23
offset=${howManyNounces}*0
iniLoc=0

#############################Do not modify below this line
startAt=$(($iniLoc+$offset))
endAt=$(($startAt+$howManyNounces*$filesToGenerate))

for i in $(eval echo "{$startAt..$endAt..$howManyNounces}")
do

cmd="~/_plot/./plot ${id} ${i} ${howManyNounces} ${stagger} ${cpu}"
time $(eval echo $cmd)
done

windows:
Code:
@echo off

@SET ID=put_here_your_numerical_id
@SET howManyNounces=40960
@SET stagger=4096
@SET filesToGenerate=15
@SET cpu=23
@SET /a offset=(%howManyNounces% * 21)
@SET initLoc=0

@::############################Do not modify below this line
@SET /a startAt=%initLoc% + %offset%
@SET /a stopAt=%startAt% + %howManyNounces% * %filesToGenerate%

FOR /L %%A in (%startAt%, %howManyNounces%, %stopAt%) DO (

plot.exe %ID% %%A %howManyNounces% %stagger% %cpu%
)
newbie
Activity: 46
Merit: 0
https://i.imgur.com/YiIXY4d.png

Guys just need a small help, is this means my mining is good? I am mining on pool. Thanks. Also there is error reading file **** (my generate plot setting)

it's easy, see in your wallet if you are receiving burst coin, you should receive something in 2 hours or less
https://i.imgur.com/DnRPCwa.png

Is this error normal? I havent submitted any valid share yet so i dont think i can see coins in my wallet yet.. just want to make sure im mining correctly. Thanks for taking time to answer mate. Much appreciated.
hero member
Activity: 588
Merit: 500
as there is not a definative guide yet can you start multiple hdds from nonce 0? or is this a bad thing?

if you overlap plots (as in starting on all hdds from 0) you are wasting space
BOLLOX!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
THATS 1TB HD AND 250 GB HD AND A 500 GB HD ALL NEEDING RE DOING :-(
sr. member
Activity: 458
Merit: 250
beast at work
as there is not a definative guide yet can you start multiple hdds from nonce 0? or is this a bad thing?

if you overlap plots (as in starting on all hdds from 0) you are wasting space
hero member
Activity: 588
Merit: 500
as there is not a definative guide yet can you start multiple hdds from nonce 0? or is this a bad thing?
Jump to: