Haven’t had time to update the SVN yet. Wait for 0.3.6, I’m building it now. You can shut down your node in the meantime. SVN is updated with version 0.3.6. Uploading Windows build of 0.3.6 to Sourceforge now, then will rebuild linux. Related posts: Re: *** ALERT *** version 0.3.6 […]
Read moreCategory: Bitcoin Talk
Re: *** ALERT *** version 0.3.6
is this in the SVN? Haven’t had time to update the SVN yet. Wait for 0.3.6, I’m building it now. You can shut down your node in the meantime. Related posts: Re: *** ALERT *** version 0.3.6 Haven’t had time to update the SVN yet. Wait for… *** ALERT *** […]
Read more*** ALERT *** Upgrade to 0.3.6
Please upgrade to 0.3.6 ASAP! We fixed an implementation bug where it was possible that bogus transactions could be displayed as accepted. Do not accept Bitcoin transactions as payment until you upgrade to version 0.3.6! If you can’t upgrade to 0.3.6 right away, it’s best to shut down your Bitcoin […]
Read moreRe: wiki registration email?
Looks like bitcoin.org is listed on the PBL. WTF? How did we get on that? AFAIK, the only e-mail is if you tell the forum to do notifications, and I guess the wiki registration. I’d consider turning off the forum notification e-mails, I don’t know why we have that. Related […]
Read moreRe: Scalability and transaction rate
I’m curious about the developers feelings on scalability. For example, could the system handle a million users, doing say 5 transactions each per day. 5 million transactions per day is roughly 35,000 transactions per 10 minute period? Is there a bottle neck in propagating 35,000 transactions to a million nodes […]
Read moreRe: Difficulty
http://nullvoid.org/bitcoin/difficultiez.php Code: <? header(“Content-type: text/html”); require_once ‘jsonRPCClient.php’; $data=new jsonRPCClient(‘http://127.0.0.1:8332’); $blockcount = $data->getblockcount(); $now = date(“U”); $blockfile = “blockdata”; $data = file($blockfile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); array_pop($data); ?><html> <head> <meta http-equiv=”refresh” content=”100000″> </head> <body> <pre> <? function humantime($secs) { if ($secs<0) return false; $m = (int)($secs / 60); $s = $secs % […]
Read moreRe: Build error SVN r115 on my Mac: workaround
I get: Code: /var/folders/n7/n7Do3Krz2RWPeE+1YxvhUU+++TM/-Tmp-//cc8PgHsQ.s:879:suffix or operands invalid for `call’ … compiling cryptopp/sha.cpp (latest SVN source) on my Mac (gcc version 4.2.1). I fixed it by adding -DCRYPTOPP_DISABLE_ASM to my makefile; perhaps somebody with more experience compiling C++ on a Mac can figure out a better fix. Was that the only […]
Read moreRe: Having problems specifing -datadir
Whilst not amazingly critical, i find it strange that i consistently get the below error messages from the console and debug.log when i try to specify the datadir option with anything other than the period char (current directory). This is using the bitcoind program on an archlinux terminal session, im […]
Read moreRe: Bitcoin x86 for Windows
I’ve got some older machines (for the windows client and linux clients) to test with that don’t support SSE2. Mainly if you try to run them, the program just crashes when I tried some of the experimental builds here, but I’ll be glad to test some future official builds to […]
Read moreRe: Bitcoin x86 for Windows
Quote from: BlackEye on July 25, 2010, 22:12:23 I was able to integrate the SHA256 functionality from Crypto++ 5.6.0 into Bitcoin. This is the fastest SHA256 yet using the SSE2 assembly code. Since Bitcoin was sending unaligned data to the block hash function, I had to change the MOVDQA instruction […]
Read more