Bitcoin Forum
July 05, 2024, 02:15:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 [546] 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 ... 1315 »
  Print  
Author Topic: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000  (Read 2170608 times)
Chode
Newbie
*
Offline Offline

Activity: 42
Merit: 0



View Profile
September 19, 2014, 07:50:56 AM
 #10901

Hmmm....dunno why, but fixed anyway(i didn't make the bit ly links but I don't know why It'd do that)

Guess they just don't like MEGA...
btw, not sure if you're working on it but it will be nice if there's a separate download section in the menu and a big download button on the front page that leads to that section.
Irontiga
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


View Profile
September 19, 2014, 07:51:16 AM
 #10902

http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes

Enough people trust you....but anything with a .farm tld makes one a little suspicious Wink
burstcoin (OP)
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
September 19, 2014, 07:51:41 AM
 #10903

Is the dev still active here?
Yeah, I'm still here every day.

So what are the new api calls?

The ones that come to mind right now are:
getMiningInfo (no extra params)
gives info for mining. example:
{"baseTarget":"2880322","height":"13884","generationSignature":"bf903dd43395da657be20e08d8cd4c3c2aaf01610da5674983b478fe45bca3ed"}

submitNonce (secretPhrase, nonce, accountId)
for solo mining, only secretPhrase and nonce are needed.
for v2 pooling, give pool's secretPhrase with miner's nonce and accountId.
returns JSON with result and if everything good, deadline

setRewardRecipient (secretPhrase, recipient)

getRewardRecipient (account)
returns JSON {"rewardRecipient":""} showing what numeric address the reward recipient of the supplied account is set to

getAccountsWithRewardRecipient (account)
returns JSON {"accounts":[]} showing what account ids have their reward recipient set to the supplied account. This is intended for use by pools, and a user stops showing up on this list when a new assignment has been confirmed, even though it hasn't taken effect yet, to give pools sufficient time to react to the change. A pool can effectively use this list as a registered users list when the call it with their own id.

BURST-QHCJ-9HB5-PTGC-5Q8J9
fanepatent
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
September 19, 2014, 07:54:04 AM
 #10904

http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes

Enough people trust you....but anything with a .farm tld makes one a little suspicious Wink

He told me to give him 0.3 BTC and he wil install the pool on my server...

And speaking of pools. We need more hash power over at http://burstpool.ddns.net

BURST - BURST-58XP-63WY-XSVQ-ASG9A
burstcoin (OP)
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
September 19, 2014, 07:55:46 AM
 #10905

hi burstcoin,

do you change your targetdeadline to 125000?........ nice
Probably will take it up to 150k tomorrow, but just stepping it up slowly.

BURST-QHCJ-9HB5-PTGC-5Q8J9
koko2530
Sr. Member
****
Offline Offline

Activity: 397
Merit: 250


View Profile
September 19, 2014, 07:57:28 AM
 #10906

http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes

Enough people trust you....but anything with a .farm tld makes one a little suspicious Wink

please wait
 Cry
jamoes
Member
**
Offline Offline

Activity: 89
Merit: 10


View Profile
September 19, 2014, 07:58:38 AM
 #10907

The difficulty is continuing to rise. We've definitively crossed 5 PB network size by now. Here's the updated charts that I've been using to track difficulty:





How did you get this info? what's your source? that block explorer on the O.P is kinda deceiving. I wish there was a site less flashy and more detailed.

I wrote a script that queries my local burst wallet for the baseTarget for every block. The baseTarget can be used to calculate the total network size.

It's a little but of a manual process, but here's the ruby script I run to update the data (requires the 'rest-client' gem):

Code:
require 'json'
require 'rest_client'

class ApiClient
  def initialize(url = 'http://localhost:8125/burst')
    @url = url
  end

  def request(type, args = {})
    url_args = args.map{|a, b| "#{a}=#{b}"}.join('&')
    request_url = "#{@url}?requestType=#{type}"
    request_url += '&' + url_args if url_args
    JSON.parse(RestClient.get(request_url))
  end
end

def print_last_blocks(target)
  api_client = ApiClient.new
  genesis_time = Time.utc(2014, 8, 11, 2)

  status = api_client.request('getBlockchainStatus')
  lastBlock = status['lastBlock']
  output = []
  loop do
    block = api_client.request('getBlock', {block: lastBlock})
    array =  %w{height baseTarget timestamp}.map{|s| block[s]}
    array << (genesis_time + block['timestamp']).to_s.gsub(' UTC', '')
    array << 2.0 ** 64 / block['baseTarget'].to_i / 4 / 240 / 1024 / 1024
    output << array.join(',')
    lastBlock = block['previousBlock']
    break if block['height'] <= target + 1
  end
  puts output.reverse.join("\n")
end

Then, from an irb shell, I just run something like "print_last_blocks(13000)" (I change 13000 so that it only prints the blocks since the last time I ran it), and it spits out a bunch of comma separated values that I copy and paste into a gnumeric spreadsheet. In the spreadsheet, I have a dynamically computed column for the 360 block moving average.
AFN
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
September 19, 2014, 08:01:45 AM
 #10908

dev's pool works fine

http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes

Man, your pool not working properly in first 6 hours since launch. Today it can be good, but.. sorry, i prefer dev's pool.

fanepatent
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
September 19, 2014, 08:04:11 AM
 #10909

dev's pool works fine

http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes

Man, your pool not working properly in first 6 hours since launch. Today it can be good, but.. sorry, i prefer dev's pool.



Did you host a pool? There are thing you need to configure to work. And there are thing I can't notice unless there are people hashing on the pool.

BURST - BURST-58XP-63WY-XSVQ-ASG9A
Irontiga
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


View Profile
September 19, 2014, 08:04:21 AM
 #10910

Hmmm....dunno why, but fixed anyway(i didn't make the bit ly links but I don't know why It'd do that)

Guess they just don't like MEGA...
btw, not sure if you're working on it but it will be nice if there's a separate download section in the menu and a big download button on the front page that leads to that section.

Working on it now
mig6r
Sr. Member
****
Offline Offline

Activity: 826
Merit: 250



View Profile
September 19, 2014, 08:20:08 AM
 #10911

Hello
It's possible to do my pads with different stagger?
I am now in 2048 and I wanted to add a HDD but I get this message:
It probably Takes too long to read the scoops! Consider stagger larger sizes
I would like to add my next hdd in 4096

            ▄▄▄▄▄▄▄▄
       ▄▄██████████████▄
     █████████████████████▄
   █████████████████████████
  ██████████▀▀       ▀▀██████▄
 █████████               █████
▐███████▌                 ▀███▌
████████                   ████
▐██████▌                   ▐██▌
 ███████                   ███
  ███████                 ███
   ▀██████▄             ▄██▀
     ▀███████▄▄▄▄▄▄▄▄████▀
        ▀▀███████████▀▀



 ▄▄▄             ▄▄▄           ▄▄▄   ▄▄▄▄▄         ▄▄▄         ▄▄▄▄▄▄       ▄▄▄                    ▄▄▄▄▄▄        ▄▄▄▄          ▄▄▄   ▄▄▄▄▄▄▄▄▄▄▄▄▄   
 ███             ███           ███   ███████▄      ███        ████████      ███                   ████████       ██████▄       ███   ███████████████▄
 ███             ███           ███   ███ ▀████     ███       ███▀  ▀███     ███                  ███▀  ▀███      ███ ▀███▄     ███   ███         ▀███
 ███             ███           ███   ███   ▀███▄   ███      ███▀    ▀███    ███                 ███▀    ▀███     ███   ████    ███   ███          ███
 ███             ███           ███   ███     ▀███▄ ███     ████▄▄▄▄▄▄████   ███                ████▄▄▄▄▄▄████    ███    ▀███▄  ███   ███          ███
 ████▄▄▄▄▄▄▄▄▄▄▄ ████▄▄▄▄▄▄▄▄▄▄███   ███       ███████    ███▀▀▀▀▀▀▀▀▀▀███  ████▄▄▄▄▄▄▄▄▄▄▄   ███▀▀▀▀▀▀▀▀▀▀███   ███      ▀███▄███   ███▄▄▄▄▄▄▄▄▄████
  ▀████████████▌  ▀█████████████▀    ███        ▀▀████   ███▀          ▀███  ▀█████████████  ███▀          ▀███  ███        ▀▀████   █████████████▀▀
                     ▄▄███████
                 ▄████████████
              ▄██████▀▀▀██████
       ▄▄   ▄███████     ████
   ▄▄███▀  ██████████▄▄▄████▀
 ▄████▀▀  █████████████████
         ████████████████▀
        ▀██████████████▀
          ▀█████████▀
     ▄█▀    ▀██▀▀   ▄▄
    ██  ▄█▀      ▄███▌
   █████▀        ███▀
   ▀▀▀          ███▀
                ▀     



  ▄█████████  ███       ██▄      ▄██         █████       ████▌   ▄██████████   
 ██▌          ███        ▀██▄  ▄██▀          ██▌███     ██▀██▌  ▐██           
 ███████████  ███          ▀████▀            ██▌ ███   ██▀ ██▌  ▐███████████   
 ██▌          ███▄          ▐██▌             ██▌  ███ ██▀  ██▌  ▐██           
 ██▌           ▀█████████   ▐██▌             ██▌   ▀███▀   ██▌   ▀██████████



 █████████████▌  ▄███████████▄         █████████████▌  ██▌      ▐██    ▄██████████         █████       █████    ▄██████████▄     ▄██████████▄   ▐████▄     ▐██ 
      ▐██       ▐██▀       ▀██▌             ▐██        ██▌      ▐██   ▐██                  ██▌███     ███▐██   ▐██▀      ▀██▌   ▐██▀      ▀██▌  ▐██▀███    ▐██ 
      ▐██       ▐██         ██▌             ▐██        ████████████   ▐███████████         ██▌ ███   ███ ▐██   ▐██        ██▌   ▐██        ██▌  ▐██  ▀██▄  ▐██ 
      ▐██       ▐██▄       ▄██▌             ▐██        ██▌      ▐██   ▐█▌                  ██▌  ███ ███  ▐██   ▐██▄      ▄██▌   ▐██▄      ▄██▌  ▐██    ▀██▄▐██ 
      ▐██        ▀███████████▀              ▐██        ██▌      ▐██    ▀██████████         ██▌   ▀███▀   ▐██    ▀██████████▀     ▀██████████▀   ▐██      ▀████ 
  (
BUY LLN
)Twitter
Facebook
Telegram
Chode
Newbie
*
Offline Offline

Activity: 42
Merit: 0



View Profile
September 19, 2014, 08:26:29 AM
 #10912

Hello
It's possible to do my pads with different stagger?
I am now in 2048 and I wanted to add a HDD but I get this message:
It probably Takes too long to read the scoops! Consider stagger larger sizes
I would like to add my next hdd in 4096

As long as you're talking about a different plot file - yes. Just make sure you have enough RAM available.
mig6r
Sr. Member
****
Offline Offline

Activity: 826
Merit: 250



View Profile
September 19, 2014, 08:34:14 AM
 #10913

Hello
It's possible to do my pads with different stagger?
I am now in 2048 and I wanted to add a HDD but I get this message:
It probably Takes too long to read the scoops! Consider stagger larger sizes
I would like to add my next hdd in 4096

As long as you're talking about a different plot file - yes. Just make sure you have enough RAM available.

Oops I forgot to change the google translation
You have a lot of merit, thank you for translating.  Grin
And thank you for your answer  Smiley

            ▄▄▄▄▄▄▄▄
       ▄▄██████████████▄
     █████████████████████▄
   █████████████████████████
  ██████████▀▀       ▀▀██████▄
 █████████               █████
▐███████▌                 ▀███▌
████████                   ████
▐██████▌                   ▐██▌
 ███████                   ███
  ███████                 ███
   ▀██████▄             ▄██▀
     ▀███████▄▄▄▄▄▄▄▄████▀
        ▀▀███████████▀▀



 ▄▄▄             ▄▄▄           ▄▄▄   ▄▄▄▄▄         ▄▄▄         ▄▄▄▄▄▄       ▄▄▄                    ▄▄▄▄▄▄        ▄▄▄▄          ▄▄▄   ▄▄▄▄▄▄▄▄▄▄▄▄▄   
 ███             ███           ███   ███████▄      ███        ████████      ███                   ████████       ██████▄       ███   ███████████████▄
 ███             ███           ███   ███ ▀████     ███       ███▀  ▀███     ███                  ███▀  ▀███      ███ ▀███▄     ███   ███         ▀███
 ███             ███           ███   ███   ▀███▄   ███      ███▀    ▀███    ███                 ███▀    ▀███     ███   ████    ███   ███          ███
 ███             ███           ███   ███     ▀███▄ ███     ████▄▄▄▄▄▄████   ███                ████▄▄▄▄▄▄████    ███    ▀███▄  ███   ███          ███
 ████▄▄▄▄▄▄▄▄▄▄▄ ████▄▄▄▄▄▄▄▄▄▄███   ███       ███████    ███▀▀▀▀▀▀▀▀▀▀███  ████▄▄▄▄▄▄▄▄▄▄▄   ███▀▀▀▀▀▀▀▀▀▀███   ███      ▀███▄███   ███▄▄▄▄▄▄▄▄▄████
  ▀████████████▌  ▀█████████████▀    ███        ▀▀████   ███▀          ▀███  ▀█████████████  ███▀          ▀███  ███        ▀▀████   █████████████▀▀
                     ▄▄███████
                 ▄████████████
              ▄██████▀▀▀██████
       ▄▄   ▄███████     ████
   ▄▄███▀  ██████████▄▄▄████▀
 ▄████▀▀  █████████████████
         ████████████████▀
        ▀██████████████▀
          ▀█████████▀
     ▄█▀    ▀██▀▀   ▄▄
    ██  ▄█▀      ▄███▌
   █████▀        ███▀
   ▀▀▀          ███▀
                ▀     



  ▄█████████  ███       ██▄      ▄██         █████       ████▌   ▄██████████   
 ██▌          ███        ▀██▄  ▄██▀          ██▌███     ██▀██▌  ▐██           
 ███████████  ███          ▀████▀            ██▌ ███   ██▀ ██▌  ▐███████████   
 ██▌          ███▄          ▐██▌             ██▌  ███ ██▀  ██▌  ▐██           
 ██▌           ▀█████████   ▐██▌             ██▌   ▀███▀   ██▌   ▀██████████



 █████████████▌  ▄███████████▄         █████████████▌  ██▌      ▐██    ▄██████████         █████       █████    ▄██████████▄     ▄██████████▄   ▐████▄     ▐██ 
      ▐██       ▐██▀       ▀██▌             ▐██        ██▌      ▐██   ▐██                  ██▌███     ███▐██   ▐██▀      ▀██▌   ▐██▀      ▀██▌  ▐██▀███    ▐██ 
      ▐██       ▐██         ██▌             ▐██        ████████████   ▐███████████         ██▌ ███   ███ ▐██   ▐██        ██▌   ▐██        ██▌  ▐██  ▀██▄  ▐██ 
      ▐██       ▐██▄       ▄██▌             ▐██        ██▌      ▐██   ▐█▌                  ██▌  ███ ███  ▐██   ▐██▄      ▄██▌   ▐██▄      ▄██▌  ▐██    ▀██▄▐██ 
      ▐██        ▀███████████▀              ▐██        ██▌      ▐██    ▀██████████         ██▌   ▀███▀   ▐██    ▀██████████▀     ▀██████████▀   ▐██      ▀████ 
  (
BUY LLN
)Twitter
Facebook
Telegram
Chode
Newbie
*
Offline Offline

Activity: 42
Merit: 0



View Profile
September 19, 2014, 08:39:20 AM
 #10914

Also might be a good idea to use dcct's plot optimizer utility to make your current plot file use larger stagger (you'll need a lot of free space though (at least the same amount as your current plot file)) - https://bitcointalk.org/index.php?topic=731923.msg8879760#msg8879760
koko2530
Sr. Member
****
Offline Offline

Activity: 397
Merit: 250


View Profile
September 19, 2014, 08:45:37 AM
 #10915

dev's pool works fine

http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes

Man, your pool not working properly in first 6 hours since launch. Today it can be good, but.. sorry, i prefer dev's pool.



for payment please access http://burst.cryptoport.io/acc/5846652537316771321

last 24hr not found block , but i has send my 9500 burst to pool balance and pay some account

found block  = payout
not found block = no pay out  <----  wrong Huh?


 Angry  Sad  Cry  Grin  Cheesy  Cool

deevilknight
Jr. Member
*
Offline Offline

Activity: 37
Merit: 10


View Profile
September 19, 2014, 08:52:38 AM
 #10916

What is wrong with uray's pool. I have 3 accounts. All of theam has 2TB HDD mining on ura's pool 1. My first 2 get 100 coin for all day of mining, and my last one get 2000 coin. Also my friend get 8000 coin for one day of mining with 2TB HDD too. This is not normal. Someone have similar problem?
Irontiga
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


View Profile
September 19, 2014, 08:54:08 AM
 #10917

What is wrong with uray's pool. I have 3 accounts. All of theam has 2TB HDD mining on ura's pool 1. My first 2 get 100 coin for all day of mining, and my last one get 2000 coin. Also my friend get 8000 coin for one day of mining with 2TB HDD too. This is not normal. Someone have similar problem?

It's still a luck thing, just the pool reduces the variability, kinda makes it like blocks are 100x smaller, but 100x easier to find....
HunterS
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500



View Profile
September 19, 2014, 08:54:56 AM
 #10918

i have had no payots from http://burst-pool2.cryptoport.io/ today Huh

edit: yes i have http://coinia.net/burst/balances.php just not showing it

AFN
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
September 19, 2014, 08:56:33 AM
 #10919


last 24hr not found block , but i has send my 9500 burst to pool balance and pay some account


Ok, but why you did that?
koko2530
Sr. Member
****
Offline Offline

Activity: 397
Merit: 250


View Profile
September 19, 2014, 09:01:38 AM
 #10920


last 24hr not found block , but i has send my 9500 burst to pool balance and pay some account


Ok, but why you did that?

want to keep my pool and name
 Cheesy
Pages: « 1 ... 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 [546] 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 ... 1315 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!