aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-10Update version numbers for 0.8.2rc1 releasev0.8.2rc1Gavin Andresen
2013-05-10Release notes for 0.8.2rc1Gavin Andresen
2013-05-10Merge pull request #2630 from Diapolo/translationsGavin Andresen
translations update 2013-05-08 (for 0.8.2 release)
2013-05-09Merge pull request #2635 from gavinandresen/boost_chrono_osxGavin Andresen
Link with boost_chrono library on OSX
2013-05-09Link with boost_chrono library on OSXGavin Andresen
Compiling on my OSX 10.6 build machine, I get: Undefined symbols: "boost::chrono::steady_clock::now()", referenced from: boost::cv_status boost::condition_variable::wait_for<long long, boost::ratio<1ll, 1000000000ll> >(boost::unique_lock<boost::mutex>&, boost::chrono::duration<long long, boost::ratio<1ll, 1000000000ll> > const&)in bitcoinrpc.o Linking against the boost_chrono fixes the issue. Windows builds already link against boost_chrono; Linux doesn't, but compiles (on pull-tester / gitian, at least).
2013-05-08Merge pull request #2629 from wyager/masterPieter Wuille
Specified base_uint component size
2013-05-08translations update 2013-05-08Philip Kaufmann
- integrates current translations from Transifex
2013-05-07Specified base_uint component sizeWilliam Yager
A base_uint used to be made of an array of unsigned ints. This works fine on most platforms, but might not work on certain present or future platforms. The code breaks if an unsigned int is 16 or 64 bits, so it's important to be specific. Also changed "u" to "you".
2013-05-07Merge pull request #2410 from gmaxwell/salvageharderGavin Andresen
Make explicitly requested salvage operations keep going when there is an error.
2013-05-07Merge pull request #2532 from jonasschnelli/mac_plist_fixGavin Andresen
fixes #2506: mac binary with proper version and copyright meta-informati...
2013-05-07Merge pull request #2623 from Diapolo/translationsWladimir J. van der Laan
translations update 2013-05-07
2013-05-07translations update 2013-05-07Philip Kaufmann
- updates bitcoin_en.ts and bitcoinstrings.cpp - integrates current translations from Transifex
2013-05-05Merge pull request #2621 from celeduc/masterWladimir J. van der Laan
Update readme with better link syntax (for clickable links) and better readability
2013-05-05Update readme with better link syntax (for clickable links) and better ↵Chuck LeDuc Díaz
readability.
2013-05-04Merge pull request #2577 from gavinandresen/fee_bandaidGavin Andresen
Treat dust outputs as non-standard, un-hardcode TX_FEE constants
2013-05-04Merge pull request #2606 from gavinandresen/threadfixPieter Wuille
Exit cleanly if AppInit2 returns false
2013-05-04Merge pull request #2617 from Diapolo/translationsWladimir J. van der Laan
translations update 2013-05-04
2013-05-04translations update 2013-05-04Philip Kaufmann
- updates bitcoin_en.ts and bitcoinstrings.cpp - removes bitcoin_se.ts - adds bitcoin_ar.ts - integrates current translations from Transifex
2013-05-03Merge pull request #2558 from sipa/nodbdirPieter Wuille
Some database/-related recovery improvements
2013-05-03Merge pull request #2599 from sipa/norecvdiscPieter Wuille
Do not kill connections on recv buffer overflow
2013-05-03Merge pull request #2614 from jonasschnelli/icon_testnet_macGavin Andresen
osx: show testnet icon in dock as early as possible
2013-05-03Merge pull request #2610 from gavinandresen/scriptcleanupGavin Andresen
Remove implementation of disabled opcodes
2013-05-03Merge pull request #2566 from sipa/nodefGavin Andresen
Allow the default key to be unavailable
2013-05-03Merge pull request #2607 from gavinandresen/loadwalletfixGavin Andresen
Do not write to wallet during LoadWallet
2013-05-03Merge pull request #2603 from sipa/nobestblockPieter Wuille
Bugfix: if no bestblock record is present, do a -rescan
2013-05-03Merge pull request #2602 from sipa/utxostateGavin Andresen
Improve gettxoutsetinfo command
2013-05-03Merge pull request #2598 from Diapolo/initPieter Wuille
small init.cpp changes (strings / Winsock init)
2013-05-03small init.cpp changes (strings / Winsock init)Philip Kaufmann
- add a check that requested Winsock version is available - update some strings - remove -gen=0 from help-message as this is default
2013-05-03Un-hardcode TX_FEE constantsGavin Andresen
Allow setting of MIN_TX_FEE / MIN_RELAY_TX_FEE with -mintxfee / -mintxrelayfee Default values are the same (0.0001 BTC).
2013-05-03CreateTransaction: return strFailReason on failureGavin Andresen
2013-05-03Define dust transaction outputs, and make them non-standardGavin Andresen
2013-05-03Remove flaky util thread unit testsGavin Andresen
2013-05-03osx: show testnet icon in dock as early as possibleJonas Schnelli
A green testnet splashscreen with a normal, orange dock icon looks strange and can confuse users. Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-05-03Merge pull request #2608 from jonasschnelli/pathCacheFixPieter Wuille
clear path cache after getting a proper config file (fixes #2605)
2013-05-02Remove implementation of disabled opcodesGavin Andresen
So we stop getting pull requests (like #2604) fixing problems with disabled Script opcodes. A hard fork would be required to re-enable these, and if we ever did that we'd require extensive review and testing.
2013-05-02Merge pull request #2601 from jgarzik/uri-validateJeff Garzik
RPC: strictly require HTTP URI "/"
2013-05-02clear path cache after getting a proper config file (fixes #2605)Jonas Schnelli
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-05-02Do not write to wallet during LoadWalletGavin Andresen
When debugging another issue, I found a hang-during-startup race condition due to LoadWallet calling SetMinVersion (via LoadCryptedKey). Writing to the file that you're in the process of reading is a bad idea.
2013-05-02Exit cleanly if AppInit2 returns falseGavin Andresen
Bitcoin-Qt could core dump if application initialization failed in certain ways. I double-fixed this: 1) qt/bitcoin.cpp now shuts down core threads cleanly if AppInit2 returns false 2) init.cpp now exits before StartNode() if strErrors is set (no reason to StartNode if we're just going to exit immediately anyway). Tested by triggering all of the various ways AppInit2 can fail, either by passing bogus command-line arguments or just recompiling tweaked code to simulate failure. This is a partial fix for #2480
2013-05-01Do not kill connections on recv buffer overflowPieter Wuille
Instead of killing a connection when the receive buffer overflows, just temporarily halt receiving before that happens. Also, no matter what, always allow at least one full message in the receive buffer (otherwise blocks larger than the configured buffer size would pause indefinitely).
2013-05-01Bugfix: if no bestblock record is present, do a -rescanPieter Wuille
It is possible to have a wallet.dat file without any bestblock record at all (if created offline, for example), which - when loaded into a client with a up-to-date chain - does no rescan and shows no transactions. Also make sure to write the current best block after a rescan, so it isn't necessary twice.
2013-05-01Improve gettxoutsetinfo commandPieter Wuille
* Bugfix: output the correct best block hash (during IBD, it can differ from the actual current best block) * Add height to output * Add hash_serialized, which is a hash of the entire UTXO state. Can be useful to compare two nodes. * Add total_amount, the sum of all UTXOs' values.
2013-05-01RPC: strictly require HTTP URI "/"Jeff Garzik
Previously, JSON-RPC clients accessed URI "/", and the JSON-RPC server did not care about the URI at all, and would accept any URI as valid. Change the JSON-RPC server to require URI "/" for all current accesses. This changes enables the addition of future interfaces at different URIs, such as pull request #1982 which demonstrates HTTP REST wallet download. Or, a future, breaking change in JSON-RPC interface could be introduced by serving JSON-RPC calls from new URI "/v2/".
2013-04-30Merge pull request #2595 from sipa/noannlocGregory Maxwell
Don't announce to non-peer CNodes
2013-04-30Don't announce to non-peer CNodesPieter Wuille
2013-04-29Merge pull request #2583 from laanwj/2013_04_netbase_bitfieldPieter Wuille
netbase: fix !O_NONBLOCK where ~O_NONBLOCK was meant
2013-04-29Merge pull request #2589 from sipa/win32ldberrPieter Wuille
Some win32-leveldb related fixes
2013-04-29Merge pull request #2568 from sipa/rlimitGavin Andresen
Try to increase file descriptor rlimit if necessary
2013-04-29Merge pull request #2349 from dserrano5/masterPieter Wuille
Accept negative -par values to leave N CPUs free.
2013-04-29Accept negative -par values to leave N CPUs free.David Serrano