- 26 Jun, 2014 1 commit
-
-
Philip Kaufmann authored
- remove some missplaced ; - ensure end of a namespace is clearly visible - use same formatting when using namespace
-
- 25 Jun, 2014 11 commits
-
-
Wladimir J. van der Laan authored
75c82d49 Move coins.cpp and keystore.cpp to libbitcoin_common (Wladimir J. van der Laan) 84ce18ca Remove unnecessary dependencies for bitcoin-cli (Wladimir J. van der Laan) 14f888ca Move network-time related functions to timedata.cpp/h (Wladimir J. van der Laan)
-
Wladimir J. van der Laan authored
Prepare for introduction of `bitcoin-tx` tool.
-
Wladimir J. van der Laan authored
This commit removes all the unnecessary dependencies (key, core, netbase, sync, ...) from bitcoin-cli. To do this it shards the chain parameters into BaseParams, which contains just the RPC port and data directory (as used by utils and bitcoin-cli) and Params, with the rest.
-
Wladimir J. van der Laan authored
The network time-offset-mangement functions from util.cpp are moved to timedata.(cpp|h). This breaks the dependency of util on netbase.
-
Wladimir J. van der Laan authored
fd704c7b move pow constants to chainparams (jtimon) df852d2b Refactor proof of work related functions out of main (jtimon)
-
Wladimir J. van der Laan authored
6dc90ed8 replace 3 separate calls to WSAGetLastError() with 1 (Philip Kaufmann)
-
Wladimir J. van der Laan authored
e9f2460c Add dependencies for Mac OSX gitian builds (Drak)
-
Wladimir J. van der Laan authored
b79f59b9 Update .gitignore (Drak)
-
Wladimir J. van der Laan authored
e3aedbae Consistent lettering (Whit J)
-
Drak authored
Removing old file ignores so they show up in `git status`
-
Whit J authored
-
- 24 Jun, 2014 8 commits
-
-
Drak authored
-
Wladimir J. van der Laan authored
5fbb4c9b [Qt] fix links in about window not opening (Philip Kaufmann)
-
Wladimir J. van der Laan authored
1c750dbd remove -tor compatibility code (only allow -onion) (Philip Kaufmann)
-
Wladimir J. van der Laan authored
0655fac0 miner: indentation fixes, remove for (;;) (Philip Kaufmann)
-
Wladimir J. van der Laan authored
77cbd462 Let -zapwallettxes recover transaction meta data (Cozz Lovan)
-
Philip Kaufmann authored
- closes #4402
-
Philip Kaufmann authored
- exit, if -tor option is found and give error to user
-
Philip Kaufmann authored
-
- 23 Jun, 2014 15 commits
-
-
jtimon authored
-
jtimon authored
-
Wladimir J. van der Laan authored
f3967bcc build: fix build weirdness after 54372482. (Cory Fields)
-
Cory Fields authored
bitcoin-config.h moved, but the old file is likely to still exist when reconfiguring or switching branches. This would've caused files to not rebuild correctly, and other strange problems. Make the path explicit so that the old one cannot be found. Core libs use config/bitcoin-config.h. Libs (like crypto) which don't want access to bitcoin's headers continue to use -Iconfig and #include bitcoin-config.h.
-
Gavin Andresen authored
qa/rpc_tests: Wait for handshake to complete in connect_nodes
-
Wladimir J. van der Laan authored
This avoids a race condition in which the connection was made but the version handshake is not completed yet. In that case transactions won't be broadcasted to a peer yet, and the nodes will wait forever for their mempools to sync.
-
Wladimir J. van der Laan authored
3f9a0199 added list/get received by address/ account tests (Alon Muroch)
-
Wladimir J. van der Laan authored
b3c912d9 [Qt] Change Coin control labels and tooltips because of non-rounding fees (Cozz Lovan)
-
Wladimir J. van der Laan authored
It is outdated information. If we ever resurrect gitian-downloader it can be brought back from history and updated.
-
Wladimir J. van der Laan authored
fa126eff Avoid undefined behavior using CFlatData in CScript serialization (Wladimir J. van der Laan)
-
Wladimir J. van der Laan authored
`&vch[vch.size()]` and even `&vch[0]` on vectors can cause assertion errors with VC in debug mode. This is the problem mentioned in #4239. The deeper problem with this is that we rely on undefined behavior. - Add `begin_ptr` and `end_ptr` functions that get the beginning and end pointer of vector in a reliable way that copes with empty vectors and doesn't reference outside the vector (see https://stackoverflow.com/questions/1339470/how-to-get-the-address-of-the-stdvector-buffer-start-most-elegantly/1339767#1339767). - Add a convenience constructor to CFlatData that wraps a vector. I added `begin_ptr` and `end_ptr` as separate functions as I imagine they will be useful in more places.
-
Wladimir J. van der Laan authored
3dc1464f add missing vhListenSocket.clear(); to CNetCleanup() (Philip Kaufmann) 2831a03b remove unused CNode::Cleanup() (Philip Kaufmann)
-
Wladimir J. van der Laan authored
040c2d3f Fix formatting (Drak)
-
Wladimir J. van der Laan authored
b612bde5 remove unneded class CNodeCombinedStats; from rpcconsole.cpp (Philip Kaufmann)
-
Philip Kaufmann authored
- also 2 small style fixes
-
- 22 Jun, 2014 4 commits
-
-
Pieter Wuille authored
d38da59b Code simplifications after CTransaction::GetHash() caching (Pieter Wuille) 4949004d Add CMutableTransaction and make CTransaction immutable. (Pieter Wuille)
-
Pieter Wuille authored
806fd19e Allocate receive buffers in on the fly (Pieter Wuille)
-
Philip Kaufmann authored
-
Philip Kaufmann authored
-
- 21 Jun, 2014 1 commit
-
-
Philip Kaufmann authored
- change a for (;;) into while (true), as we nowhere else use the first - init nNonceFound to 0 - fix indentation in BitcoinMiner try/catch block
-