Bitcoin Forum
October 14, 2024, 09:40:18 PM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Bitcoin Discussion / Re: Bitcoin Losers on: June 11, 2014, 05:19:22 PM
OK... So your life savings last NOV 2013 you put in what $800 that is your life saving? did you save what $0.50 per week for 20 years...  sorry but you sound like a mass troll... or some real poor dude that could do better if he begged for some money..

you know there are people that have lost lot half a btc bot 100 or 1000 btc ... and you dont see them cry in forums...

Yes, life savings. Business went bankrupt during recession. Not everyone is born with a silverspoon stuck up their backside.
If you were wealthy enough to EVER own a business (be a slave-owner) you were doing far better than most Americans. Your story doesn't add up. I suspect you are a liar.

I can't believe this - are you for real? This is the real world. I've owned a business and lost 300K and that money is gone. Someone with a narrow frame of reference like yours would either consider this to be bullshit or me to be a failure, but you've probably never had 10 staff on your books, high rent and high outgoings, and had to weather a downturn. All your money goes bye bye and you don't get a handout to save you. And you get the indignity of sitting there afterwards doing all the accounting and dealing with audits even though you're broke.

For someone who has been through that, climbing back into having money is a big thing, and losing it again is tough. Have some respect for others.
2  Bitcoin / Project Development / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: May 10, 2014, 09:25:56 AM
Hi John,

Thanks for all your work on ABE, it's a great piece of software. I have loaded in a few blockchains now, but there's one in particular I am having issues with and I see some strange behaviour that I haven't been able to understand. I am trying to load in the Datacoin blockchain which is a primecoin based chain with additional data structures for storing data in the blockchain.

I understand Abe won't be able to parse the data component which I am going to do separately with Datacoin tools, I am looking to import the transaction information via RPC however ABE is making a strange RPC call that the daemon doesn't like causing it to fail.

I have defined the coin details in abe.conf and specified the genesis block transaction:

Code:
import-tx += 01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff350002e7033068747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3332353733352e30ffffffff0100e1f50500000000000000000000

datadir += [{
        "dirname": "/usr/src/dev/bitcoin/blockchain/datacoin/",
        "chain": "Datacoin",
        "code3": "DTC",
        "address_version": "\u001e",
        "loader": "rpc",
        "conf": "/usr/src/dev/bitcoin/blockchain/datacoin/datacoin.conf"
      }]

However when I run abe, it throws an error from the RPC call to get the next block:

Code:
python -m Abe.abe --config abe.conf

Falling back to default (Bitcoin) policy.
RPC failed: ('http protocol error', 0, 'got a bad status line', None)
Failed to catch up {'blkfile_offset': 0, 'blkfile_number': 1, 'chain_id': 11, 'loader': u'rpc', 'conf': u'/usr/src/dev/bitcoin/blockchain/datacoin/datacoin.conf', 'dirname': u'/usr/src/dev/bitcoin/blockchain/datacoin/', 'id': 18L}
Traceback (most recent call last):
  File "Abe/DataStore.py", line 2511, in catch_up
    raise Exception("RPC load failed")
Exception: RPC load failed

I did a tcpdump of the RPC request and I can see that for some reason, Abe is requesting block height 'x' which is causing the daemon to immediately drop the connection. The same command from the command line also throws an error:

Code:
POST http://127.0.0.1:11777 HTTP/1.0
Content-Type: application/x-www-form-urlencoded
Content-Length: 70
Authorization: Basic [...]
Host: 127.0.0.1:11777
User-Agent: Python-urllib/1.17

{"params": [0], "jsonrpc": "2.0", "method": "getblockhash", "id": "x"}

Any idea where the x is coming from? I looked all through DataStore.py at where get_blockhash is used and from what I can see it's meant to be requsting block height 0.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!