- 05 May, 2013 1 commit
-
-
Chuck LeDuc Díaz authored
-
- 04 May, 2013 4 commits
-
-
Gavin Andresen authored
Treat dust outputs as non-standard, un-hardcode TX_FEE constants
-
Pieter Wuille authored
Exit cleanly if AppInit2 returns false
-
Wladimir J. van der Laan authored
translations update 2013-05-04
-
Philip Kaufmann authored
- updates bitcoin_en.ts and bitcoinstrings.cpp - removes bitcoin_se.ts - adds bitcoin_ar.ts - integrates current translations from Transifex
-
- 03 May, 2013 16 commits
-
-
Pieter Wuille authored
Some database/-related recovery improvements
-
Pieter Wuille authored
Do not kill connections on recv buffer overflow
-
Gavin Andresen authored
osx: show testnet icon in dock as early as possible
-
Gavin Andresen authored
Remove implementation of disabled opcodes
-
Gavin Andresen authored
Allow the default key to be unavailable
-
Gavin Andresen authored
Do not write to wallet during LoadWallet
-
Pieter Wuille authored
Bugfix: if no bestblock record is present, do a -rescan
-
Gavin Andresen authored
Improve gettxoutsetinfo command
-
Pieter Wuille authored
small init.cpp changes (strings / Winsock init)
-
Philip Kaufmann authored
- add a check that requested Winsock version is available - update some strings - remove -gen=0 from help-message as this is default
-
Gavin Andresen authored
Allow setting of MIN_TX_FEE / MIN_RELAY_TX_FEE with -mintxfee / -mintxrelayfee Default values are the same (0.0001 BTC).
-
Gavin Andresen authored
-
Gavin Andresen authored
-
Gavin Andresen authored
-
Jonas Schnelli authored
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>
-
Pieter Wuille authored
clear path cache after getting a proper config file (fixes #2605)
-
- 02 May, 2013 5 commits
-
-
Gavin Andresen authored
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.
-
Jeff Garzik authored
RPC: strictly require HTTP URI "/"
-
Jonas Schnelli authored
Signed-off-by:
Jonas Schnelli <jonas.schnelli@include7.ch>
-
Gavin Andresen authored
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.
-
Gavin Andresen authored
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
-
- 01 May, 2013 4 commits
-
-
Pieter Wuille authored
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).
-
Pieter Wuille authored
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.
-
Pieter Wuille authored
* 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.
-
Jeff Garzik authored
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/".
-
- 30 Apr, 2013 2 commits
-
-
Gregory Maxwell authored
Don't announce to non-peer CNodes
-
Pieter Wuille authored
-
- 29 Apr, 2013 6 commits
-
-
Pieter Wuille authored
netbase: fix !O_NONBLOCK where ~O_NONBLOCK was meant
-
Pieter Wuille authored
Some win32-leveldb related fixes
-
Gavin Andresen authored
Try to increase file descriptor rlimit if necessary
-
Pieter Wuille authored
Accept negative -par values to leave N CPUs free.
-
David Serrano authored
-
Wladimir J. van der Laan authored
Allow select()ing up to 1024 file descriptors on Windows
-
- 28 Apr, 2013 2 commits
-
-
Pieter Wuille authored
As the default can be too low, especially on OSX.
-
Wladimir J. van der Laan authored
move WSAStartup to init
-