Author

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

hero member
Activity: 619
Merit: 500
i dont think, that btc will touc 150 again...
we´ll see.
hero member
Activity: 868
Merit: 1000
wow, yesterday it was about 9 Btc buy orders, now 18 btc. sweet. seems the coins now comes to the attention of many others.



i guess finally someone who want burst figure out buying is way better than mining. Especially so when BTC price is so low. If BTC goes below 150, i might sell all my HDD , buy BTC and use it to buy burst.
hero member
Activity: 619
Merit: 500
wow, yesterday it was about 9 Btc buy orders, now 18 btc. sweet. seems the coins now comes to the attention of many others.

sr. member
Activity: 355
Merit: 250
hero member
Activity: 714
Merit: 500
Hi, I'm new to burstcoin. I received coin from faucet, but it is unconfirmed transaction for 7 blocks ago... Usually how long should I wait, or there are actions that I have to perform? Thanks!
hero member
Activity: 794
Merit: 1000
Monero (XMR) - secure, private, untraceable
Curious bit, I have a rather large plot going on right now. What happens if you miscalculate the amount of space you have and you try to plot more space then you have? Will the plot still be good if the plotter runs into it or will it error out and the plot will be corrupt?

The plotter will stop, but the file is still good to use.
If you use Blago's miner you may need to rename the file, so the nonces_count * 256 * 1024 = file_size_in_bites. If file_size_in_bites/256/1024 is not a whole number you also need to set the end of the file to match the last nonce plotted. I had 2 such files at some point, so I wrote this C# code to set the EOF in windows without additional space or replot:
Code:
FileStream plotFileStream = File.Open("K:\\plots\\9591539430059160058_93967360_1269760_8192", FileMode.OpenOrCreate, FileAccess.Write);
plotFileStream.SetLength(324270030848);
plotFileStream.Close();
sr. member
Activity: 280
Merit: 250
Curious bit, I have a rather large plot going on right now. What happens if you miscalculate the amount of space you have and you try to plot more space then you have? Will the plot still be good if the plotter runs into it or will it error out and the plot will be corrupt?

The plotter will stop, but the file is still good to use.
sr. member
Activity: 423
Merit: 250
Curious bit, I have a rather large plot going on right now. What happens if you miscalculate the amount of space you have and you try to plot more space then you have? Will the plot still be good if the plotter runs into it or will it error out and the plot will be corrupt?
sr. member
Activity: 257
Merit: 255
...
update 1.150106 (added check for vectors)
https://www.dropbox.com/s/3ah0se62uvz1n8t/miner.exe?dl=0
...

Has the windows miner a thread/hdd limit?!
...


https://bitcointalksearch.org/topic/m.9967171

miner support 100 different accounts,
1000 files per thread,
maximum threads = 24  ("c:\\+d:\\" - it's 1 thread)

you can use in series  "c:\\+d:\\+e:\\+f:\\"
  
(12 cores = 24 threads)
I did not think that anyone will use more than 24 threads, if necessary, can increase the limits...

https://github.com/Blagodarenko/miner-burst/blob/master/miner.cpp (line 55)

Sry Blago, i should RTFM ... the 'series' operator perfectly solves my Problem ... thx, you are awesome :-)
sr. member
Activity: 416
Merit: 250
...
update 1.150106 (added check for vectors)
https://www.dropbox.com/s/3ah0se62uvz1n8t/miner.exe?dl=0
...

Has the windows miner a thread/hdd limit?!
Miner works fine for me, but after adding drive 25 it crashes on startup ... tested with 2 different drives.


http://s4.postimg.org/qicls2otn/miner.jpg

My CPU has 6/12 cores/threads ... i can run 24 drives, it seams to me that only 2 drives per thread are allowed/possible?!

...

Edit: If i split the drives and run 2 instances of miner, there is no problem ... but thats not nice :-)



https://bitcointalksearch.org/topic/m.9967171

miner support 100 different accounts,
1000 files per thread,
maximum threads = 24  ("c:\\+d:\\" - it's 1 thread)

you can use in series  "c:\\+d:\\+e:\\+f:\\"
  
(12 cores = 24 threads)
I did not think that anyone will use more than 24 threads, if necessary, can increase the limits...

https://github.com/Blagodarenko/miner-burst/blob/master/miner.cpp (line 55)
full member
Activity: 260
Merit: 100
Hey,

traying to withdraw from Bittrex gives me an "invalid address" error. Support said "your BURST address needs to be primed and visible on the chain", but didn't know how to do that.

Can anyone help me?

You need a few coins deposited into your account to activate it.

http://burstfaucet.com/
http://faucet.burstcoin.info/

Try those, if not post your address, I'm sure someone here can spare 2 or 4 burst

Good-Luck

So that faucet procedure didn't work.. The first one gave me an error anyway and the tx from the second one never arrived.

Seems like a bit of a hassle to send BURST?

If anyone can help it's much appreciated..

Well it is a standard procedure with nxt based coins. We had some issues with faucets earlier in this thread, perhaps they are not updated to 1.2.0 so the tx never go through.

Post the address like people mentioned. I'll be able to send you some in 6ish hours if nobody reacts sooner.

BURST-AZS3-QLKM-RWLR-4B6LJ

Much appreciated, thanks a lot.

5 bursts your way

Thanks to everyone who sent (1x5 + 2x10 BURST received). Already sent my first tx from Bittrex and it really does work now.
legendary
Activity: 2282
Merit: 1072
https://crowetic.com | https://qortal.org
Curiously, if you have more then one drive, I know you aren't supposed to overlap nonces, but can you start the next drive wherever you want it to be or does it have to be sequential so the next nonce is right after the first one without any skips in between?

Like if I have 0-50000, does the next drive need to start at 50001-100000 or can I just start it at 100000 (hypothetical numbers)?

it DOES NOT have to be sequential. I usually add a zero. Wink
sr. member
Activity: 423
Merit: 250
Curiously, if you have more then one drive, I know you aren't supposed to overlap nonces, but can you start the next drive wherever you want it to be or does it have to be sequential so the next nonce is right after the first one without any skips in between?

Like if I have 0-50000, does the next drive need to start at 50001-100000 or can I just start it at 100000 (hypothetical numbers)?
sr. member
Activity: 257
Merit: 255
...
update 1.150106 (added check for vectors)
https://www.dropbox.com/s/3ah0se62uvz1n8t/miner.exe?dl=0
...

Has the windows miner a thread/hdd limit?!
Miner works fine for me, but after adding drive 25 it crashes on startup ... tested with 2 different drives.


http://s4.postimg.org/qicls2otn/miner.jpg

My CPU has 6/12 cores/threads ... i can run 24 drives, it seams to me that only 2 drives per thread are allowed/possible?!

Log for crash ...
Code:
19:35:45 Miner path: C:\burst\miner\
19:35:45 Loading config C:\burst\miner\miner.conf
19:35:45 Mode: 0
19:35:45 Server: localhost
19:35:45 Port: 8125
19:35:45 Paths: 26
19:35:45 Path: C:\data\burst#01
19:35:45 Path: C:\data\burst#02
19:35:45 Path: C:\data\burst#03
19:35:45 Path: C:\data\burst#04
19:35:45 Path: C:\data\burst#05
19:35:45 Path: C:\data\burst#06
19:35:45 Path: C:\data\burst#07
19:35:45 Path: C:\data\burst#08
19:35:45 Path: C:\data\burst#09
19:35:45 Path: C:\data\burst#10
19:35:45 Path: C:\data\burst#11
19:35:45 Path: C:\data\burst#12
19:35:45 Path: C:\data\burst#13
19:35:45 Path: C:\data\burst#14
19:35:45 Path: C:\data\burst#15
19:35:45 Path: C:\data\burst#16
19:35:45 Path: C:\data\burst#17
19:35:45 Path: C:\data\burst#18
19:35:45 Path: C:\data\burst#19
19:35:45 Path: C:\data\burst#20
19:35:45 Path: C:\data\burst#21
19:35:45 Path: C:\data\burst#22
19:35:45 Path: C:\data\burst#23
19:35:45 Path: C:\data\burst#24
19:35:45 Path: C:\data\burst#25
19:35:45 Path:

Edit: If i split the drives and run 2 instances of miner, there is no problem ... but thats not nice :-)

sr. member
Activity: 476
Merit: 250
Hey,

traying to withdraw from Bittrex gives me an "invalid address" error. Support said "your BURST address needs to be primed and visible on the chain", but didn't know how to do that.

Can anyone help me?

You need a few coins deposited into your account to activate it.

http://burstfaucet.com/
http://faucet.burstcoin.info/

Try those, if not post your address, I'm sure someone here can spare 2 or 4 burst

Good-Luck

So that faucet procedure didn't work.. The first one gave me an error anyway and the tx from the second one never arrived.

Seems like a bit of a hassle to send BURST?

If anyone can help it's much appreciated..

Well it is a standard procedure with nxt based coins. We had some issues with faucets earlier in this thread, perhaps they are not updated to 1.2.0 so the tx never go through.

Post the address like people mentioned. I'll be able to send you some in 6ish hours if nobody reacts sooner.

BURST-AZS3-QLKM-RWLR-4B6LJ

Much appreciated, thanks a lot.

5 bursts your way
hero member
Activity: 588
Merit: 500
Hey,

traying to withdraw from Bittrex gives me an "invalid address" error. Support said "your BURST address needs to be primed and visible on the chain", but didn't know how to do that.

Can anyone help me?

You need a few coins deposited into your account to activate it.

http://burstfaucet.com/
http://faucet.burstcoin.info/

Try those, if not post your address, I'm sure someone here can spare 2 or 4 burst

Good-Luck

So that faucet procedure didn't work.. The first one gave me an error anyway and the tx from the second one never arrived.

Seems like a bit of a hassle to send BURST?

If anyone can help it's much appreciated..

Well it is a standard procedure with nxt based coins. We had some issues with faucets earlier in this thread, perhaps they are not updated to 1.2.0 so the tx never go through.

Post the address like people mentioned. I'll be able to send you some in 6ish hours if nobody reacts sooner.

I don't know of any faucet troubles earlier, i do know that the wallet is not 0n 1.2.0 yet tho. So that's the reason, will update soon.
hero member
Activity: 616
Merit: 500
Hey,

traying to withdraw from Bittrex gives me an "invalid address" error. Support said "your BURST address needs to be primed and visible on the chain", but didn't know how to do that.

Can anyone help me?

You need a few coins deposited into your account to activate it.

http://burstfaucet.com/
http://faucet.burstcoin.info/

Try those, if not post your address, I'm sure someone here can spare 2 or 4 burst

Good-Luck

So that faucet procedure didn't work.. The first one gave me an error anyway and the tx from the second one never arrived.

Seems like a bit of a hassle to send BURST?

If anyone can help it's much appreciated..

Well it is a standard procedure with nxt based coins. We had some issues with faucets earlier in this thread, perhaps they are not updated to 1.2.0 so the tx never go through.

Post the address like people mentioned. I'll be able to send you some in 6ish hours if nobody reacts sooner.

BURST-AZS3-QLKM-RWLR-4B6LJ

Much appreciated, thanks a lot.
hero member
Activity: 527
Merit: 500
Hey,

traying to withdraw from Bittrex gives me an "invalid address" error. Support said "your BURST address needs to be primed and visible on the chain", but didn't know how to do that.

Can anyone help me?

You need a few coins deposited into your account to activate it.

http://burstfaucet.com/
http://faucet.burstcoin.info/

Try those, if not post your address, I'm sure someone here can spare 2 or 4 burst

Good-Luck

So that faucet procedure didn't work.. The first one gave me an error anyway and the tx from the second one never arrived.

Seems like a bit of a hassle to send BURST?

If anyone can help it's much appreciated..

Well it is a standard procedure with nxt based coins. We had some issues with faucets earlier in this thread, perhaps they are not updated to 1.2.0 so the tx never go through.

Post the address like people mentioned. I'll be able to send you some in 6ish hours if nobody reacts sooner.
newbie
Activity: 18
Merit: 0
Hey,

traying to withdraw from Bittrex gives me an "invalid address" error. Support said "your BURST address needs to be primed and visible on the chain", but didn't know how to do that.

Can anyone help me?

You need a few coins deposited into your account to activate it.

http://burstfaucet.com/
http://faucet.burstcoin.info/

Try those, if not post your address, I'm sure someone here can spare 2 or 4 burst

Good-Luck

So that faucet procedure didn't work.. The first one gave me an error anyway and the tx from the second one never arrived.

Seems like a bit of a hassle to send BURST?

If anyone can help it's much appreciated..

Post you whole address, somebody will send you some burst.
hero member
Activity: 616
Merit: 500
Hey,

traying to withdraw from Bittrex gives me an "invalid address" error. Support said "your BURST address needs to be primed and visible on the chain", but didn't know how to do that.

Can anyone help me?

You need a few coins deposited into your account to activate it.

http://burstfaucet.com/
http://faucet.burstcoin.info/

Try those, if not post your address, I'm sure someone here can spare 2 or 4 burst

Good-Luck

So that faucet procedure didn't work.. The first one gave me an error anyway and the tx from the second one never arrived.

Seems like a bit of a hassle to send BURST?

If anyone can help it's much appreciated..
Jump to: