Bitcoin Forum
July 04, 2024, 03:32:05 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Hardware / Re: BA X-1 Unboxing on: June 25, 2014, 08:42:35 AM
thanks guys but I've already done everything here, not in my dhcp table on the router, even did an arp lookup on the switch. I'm a network admin this isn't something new to me Smiley

bobsag3: nope only the 2 blue lights on the board, this is why I'm thinking it is dead

The combination of NIC chipset + linux driver used by some miners, is not compatible with some switches (dell), such that dhcp doesn't work. Are your switches by chance Dell? Maybe try a different switch or router? (not saying X1 has this issue; no dell switch to test it on)

Also, the rpi version of x1 had a 192.168.1.x address. Might try them too.
2  Bitcoin / Pools / [p2pool] Best user interface? on: May 15, 2014, 08:18:03 PM

Who's got the best p2pool UI?

3  Alternate cryptocurrencies / Altcoin Discussion / Re: Nxt source code flaw reports on: February 23, 2014, 11:14:30 PM
The block hash is excluded from generation signature.

Code:
    block.payloadHash = digest.digest();

    // ???

    block.generationSignature = Crypto.sign(Block.getLastBlock().generationSignature, secretPhrase);

Flaw: Blocks can be mutated after the fact, by the account which generated the block.
4  Alternate cryptocurrencies / Altcoin Discussion / Re: Nxt source code flaw reports on: February 23, 2014, 09:53:15 PM
The block payload hash and generation signature excluded from the block signature.

Code:
			byte[] data = block.getBytes();
byte[] data2 = new byte[data.length - 64];
System.arraycopy(data, 0, data2, 0, data2.length);
block.blockSignature = Crypto.sign(data2, secretPhrase);

These bytes shouldn't be excluded from the generation signature or the block signature.

The code above, surrounding code, and relevant code in verifyBlockSignature() and verifyGenerationSignature() is fatally flawed.
5  Bitcoin / Project Development / Re: MacOS client: request for features and funding on: December 29, 2013, 06:09:13 AM
just made several updates to this. bump.
6  Bitcoin / Project Development / MacOS client: request for features and funding on: December 27, 2013, 04:53:36 PM
This is an open request for feedback, feature requests, and donations to fund a new MacOS client.

*snip*

But writing a bitcoin client is hard!
Yep.


2014-Apr-8 Edit: No interest, post removed.
7  Other / Beginners & Help / just another developer: intro post! on: December 26, 2013, 07:45:18 AM
Interested in contributing improvements - code, devops, etc - while also looking for parties interested in developing systems for blockchain management, SVP clients, and processing transactions. Beginning w/an SVP client for Electrum and a little tool which I hope everyone will find useful. If you'd like to know more, please PM, otherwise my posts here will usually be technical. (Questions are welcome in the post too! And yes, this post is a request for whitelisting.)
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!