Bitcoin Forum
May 24, 2024, 04:12:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 23 24 25 26 27 28 29 30 31 32 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 »
1441  Alternate cryptocurrencies / Pools (Altcoins) / Re: [POOL] burst-pool.cryptoport.io [ No-Deadline Limit ] [ Instant Payout ] on: September 09, 2014, 09:15:03 AM
uray , can u do a auto payout for those remain below 250 burst after 24 hours ? Or some sort of auto payout for those with left over coin on pool. Or u gonna keep those coin for yourself ? I believe some of the account are inactive and their coin don't reach 250 anytime soon.

ok i will make auto-payout soon, and for those who have balance less than 1 burst, i will collect them send them to faucet address, should we do it weekly or ?

Per 24 hours ? Weekly is too long for crypto. Only need to clear those account inactive with less than 250 burst. Once u clear them there wouldnt be anything to clear. So it's sort of one time off for most account. Running the auto payout should be fast because u are only clearing inactive account which only represent less than 50% on the pool ? Those who are inactive could be no longer mining , or left for other pool , or left for solo. Clearing their payout within 24-48 hours would be good.

its now set every 100 blocks
1442  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 09, 2014, 08:03:58 AM
anybody know how long can a CPU last running at 95-100% 24/7  ?

hundreds years
1443  Alternate cryptocurrencies / Pools (Altcoins) / Re: [POOL] burst-pool.cryptoport.io [ No-Deadline Limit ] [ Instant Payout ] on: September 09, 2014, 07:51:03 AM
uray , can u do a auto payout for those remain below 250 burst after 24 hours ? Or some sort of auto payout for those with left over coin on pool. Or u gonna keep those coin for yourself ? I believe some of the account are inactive and their coin don't reach 250 anytime soon.

ok i will make auto-payout soon, and for those who have balance less than 1 burst, i will collect them send them to faucet address, should we do it weekly or ?
1444  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 09, 2014, 03:03:03 AM
C Miner Update (dcct) for burst-pool.cryptoport.io

if you are using c miner for linux, please update your miner : https://s3-ap-southeast-1.amazonaws.com/burst-mirror/dcct-pool-miner-r2.tgz
this basically remove deadline limit and add socket timeout on nonce submission

usage:
Code:
./dcct-miner <pool-hostname> <pool-port> <path-1>...<path-n>

don't use 'http' in pool-hostname
1445  Alternate cryptocurrencies / Pools (Altcoins) / Re: [POOL] burst-pool.cryptoport.io [ No-Deadline Limit ] [ Instant Payout ] on: September 09, 2014, 03:01:37 AM
C Miner Update (dcct)

if you are using c miner for linux, please update your miner : https://s3-ap-southeast-1.amazonaws.com/burst-mirror/dcct-pool-miner-r2.tgz
this basically remove deadline limit and add socket timeout on nonce submission
1446  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 08, 2014, 04:12:20 PM
looks like the first one is the real read data, and seconds one is calculated nonces (bytes * 1024 * noncesize)

i have one suspect why dcct-miner has bad deadline, i will post after testing it
1447  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 08, 2014, 04:02:27 PM
hmm..the files are generated just a few hours ago, and my best deadline with the java miner using these files was around 5min an hour ago. is it possible that the miner doesnt like to be a 32bit miner? ^^

Code:
dcct-miner/dcct-miner: ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, BuildID[sha1]=0x09410d96b865886551d02c360cae703322d5336f, not stripped

Are you using the correct passphrase?

passphrase? where? i used the tutorial here: http://burst-pool.cryptoport.io/howto.html there's nothing written about a passphrase when using your miner. I just checked back with the java miner, and instantly got much better deadlines:

Code:
{"result":"success","deadline":756214}
{"result":"success","deadline":824025}
...

edit: ah, I guess you meant the passphrase when generating the plots? yes, should have been the correct one.

i just checked the code of the miner, and the extremely high deadline that has been submitted can be explained with the fact, that the pool does not have a limit (well...nearly):

Code:
if(best < 5000000000000ULL)

so I still don't understand why the java miner finds much better and more deadlines, and why the C miner does only show ~320GB from ~620GB

edit: i'll try again and let it run a little longer...

actually that limit was from original code of dcct miner, my pool will accept any deadline, you can delete that line if you want,
and for "xxx read/yyy total" , its shows actual byte read, since only 1/4096 data is needed to be read, for example if you have 4 TB plot, dcct-miner will shows highest read is 1 GB

do you mean that 72MB/320GB does not mean my plot files are only detected to be 320GB? also it still does not explain why the java miner finds way more and better deadlines.

no, it shows byte read progress, if it shows  72MB/320 GB, it said miner has read 320GB of your plot.
see this code, both number is from same variable but the second one is 1/4 of the first one ( first on with MB suffix, and second one with GB suffix)
Code:
printf("\r%llu MB read/%llu GB total/no deadline                 ", (bytesRead / ( 1024 * 1024 )), (bytesRead / (256 * 1024)));

i dont really understand why it write like that
1448  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 08, 2014, 03:51:34 PM
hmm..the files are generated just a few hours ago, and my best deadline with the java miner using these files was around 5min an hour ago. is it possible that the miner doesnt like to be a 32bit miner? ^^

Code:
dcct-miner/dcct-miner: ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, BuildID[sha1]=0x09410d96b865886551d02c360cae703322d5336f, not stripped

Are you using the correct passphrase?

passphrase? where? i used the tutorial here: http://burst-pool.cryptoport.io/howto.html there's nothing written about a passphrase when using your miner. I just checked back with the java miner, and instantly got much better deadlines:

Code:
{"result":"success","deadline":756214}
{"result":"success","deadline":824025}
...

edit: ah, I guess you meant the passphrase when generating the plots? yes, should have been the correct one.

i just checked the code of the miner, and the extremely high deadline that has been submitted can be explained with the fact, that the pool does not have a limit (well...nearly):

Code:
if(best < 5000000000000ULL)

so I still don't understand why the java miner finds much better and more deadlines, and why the C miner does only show ~320GB from ~620GB

edit: i'll try again and let it run a little longer...

actually that limit was from original code of dcct miner, my pool will accept any deadline, you can delete that line if you want,
and for "xxx read/yyy total" , its shows actual byte read, since only 1/4096 data is needed to be read, for example if you have 4 TB plot, dcct-miner will shows highest read is 1 GB
1449  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 04:51:58 PM
@uray is there a page with user statistics ?

not yet
1450  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 04:51:37 PM
uray, is this ok?
New block 9713, basetarget 6014641                         
650 MB read/2600 GB total/deadline 512209s (511451s left)


ok for what ?
i mine with dcct miner from you howto.


yeah its ok, u r mining, and submiting share
1451  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 04:40:12 PM
uray, is this ok?
New block 9713, basetarget 6014641                         
650 MB read/2600 GB total/deadline 512209s (511451s left)


ok for what ?
1452  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 03:40:17 PM
Initial screenshots for Burst.Today Windows Installer are up.
http://burst.today/?page_id=2

Only a few more things before I release the code & download link Grin







why you need secret passphrase for plotting ?
1453  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 03:16:43 PM

oh sorry... iam hooked up with that floppy
it just crash, i think someone just sent malformed request, and i dont check it
1454  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 03:10:52 PM
tell me please! after i try run DCCT miner... they say me


Plot directory 8124 does not exist
Plot directory 80 does not exist

my cmd

./mine burst-pool.cryptoport.io 80 /media/sglasio/mine4/plotgenerator/plots /media/sglasio/mine5/plots
./mine burst-pool.cryptoport.io 8124 /media/sglasio/mine4/plotgenerator/plots /media/sglasio/mine5/plots

remove the port number, this miner doesn`t need it

you need it for my pool, as dcct original miner target port is hard coded to 8125, and my pool use 8124 or 80, 8125 is for solo mining


actually he is not calling the miner directly, he is using mine.sh. So he don`t have to put the pool address as is already inside the script file... just use:

Code:
./mine /media/sglasio/mine4/plotgenerator/plots/ /media/sglasio/mine5/plots/

that's right, its ./mine.sh if i am not wrong
1455  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 03:09:40 PM
I am buying few HDDs , is it better to get 10 1TBs or 5 2TBs , or either will not make any difference ?
either way is my guess. 10tb of 4gb memorysticks would do same job lmao

or mllions of floppy disk...
insert disk #2514 into drive A: to continue mining...

chalqnge accepted. my auto miner floppy setup. drawbacks are manual re cycle of disk in draw but it auto loads :-)

very cool, lot of people will want that, how much do you sell ? how much floppy / minute it can auto-reload ?
1456  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 03:01:32 PM
tell me please! after i try run DCCT miner... they say me


Plot directory 8124 does not exist
Plot directory 80 does not exist

my cmd

./mine burst-pool.cryptoport.io 80 /media/sglasio/mine4/plotgenerator/plots /media/sglasio/mine5/plots
./mine burst-pool.cryptoport.io 8124 /media/sglasio/mine4/plotgenerator/plots /media/sglasio/mine5/plots

remove the port number, this miner doesn`t need it

you need it for my pool, as dcct original miner target port is hard coded to 8125, and my pool use 8124 or 80, 8125 is for solo mining
1457  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 02:57:05 PM
tell me please! after i try run DCCT miner... they say me


Plot directory 8124 does not exist
Plot directory 80 does not exist

my cmd

./mine burst-pool.cryptoport.io 80 /media/sglasio/mine4/plotgenerator/plots /media/sglasio/mine5/plots
./mine burst-pool.cryptoport.io 8124 /media/sglasio/mine4/plotgenerator/plots /media/sglasio/mine5/plots

add trailing '/' after directory

and i think you are using dcct's solo miners
not modified dcct miner i put on http://burst-pool.cryptoport.io/howto.html
1458  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 02:53:09 PM
ok update for http://burst-pool.cryptoport.io

so... after a lot of nonce spammer, currently pool spammer is reduced to only one and only nonce spammer BURST-JSES-5WN7-PHD8-7CQJ6
whoever it is, you are the only one spammer, i don't know if I should be happy or not, but you are giving away your share to all miner in our pool by spamming pool with higher deadline than your best deadline, everytime you did this your share is substracted by 0.001, based on stat calculation you are sending ~3000 nonce a minute so every round you loss 3.0 shares.

just FYI, yes the pool does not have deadline limit, but pool still take only one deadline from your nonce, it is your best deadline on every block, so spamming with nonsense nonce will gain you nothing as pool will not count or add them up as your share
1459  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 02:40:59 PM
I am buying few HDDs , is it better to get 10 1TBs or 5 2TBs , or either will not make any difference ?
either way is my guess. 10tb of 4gb memorysticks would do same job lmao

or mllions of floppy disk...
insert disk #2514 into drive A: to continue mining...
1460  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | New multipools on: September 07, 2014, 02:35:52 PM
I am buying few HDDs , is it better to get 10 1TBs or 5 2TBs , or either will not make any difference ?

compared to 10x 1TB, 5x 2TB will reduce your operational cost from electricity by pennies / month
LOL
Pages: « 1 ... 23 24 25 26 27 28 29 30 31 32 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!