aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-20libbitcoinconsensus: Add pkg-config supportLuke Dashjr
2014-11-20Merge pull request #5270Wladimir J. van der Laan
57425a2 Check block header before accepting it. (Daniel Kraft)
2014-11-20Merge pull request #5000Pieter Wuille
0391423 Discourage NOPs reserved for soft-fork upgrades (Peter Todd)
2014-11-20Merge pull request #5324Wladimir J. van der Laan
72fb3d2 Update comments in src/rpc* to be doxygen compatible (Michael Ford)
2014-11-20Merge pull request #5320Wladimir J. van der Laan
e0a25c5 qt: Make askpassphrase dialog behave more sanely (Wladimir J. van der Laan)
2014-11-20Merge pull request #5235Wladimir J. van der Laan
9eb5a5f build: pad header for osx libs (Cory Fields) 9ed8979 build: fix static dll link for mingw (Cory Fields) 19df238 build: shared lib build should work reasonably well now (Cory Fields) 269efa3 build: add quick consensus lib tests (Cory Fields) cdd36c6 build: add --with-libs so that libs are optional (Cory Fields) 2cf5f16 build: add libbitcoinconsensus files and hook up the lib build (Cory Fields) ee64c53 build: remove internal/protected build attribute checks (Cory Fields) f36a40f build: check visibility attributes (Cory Fields) 811a765 build: mingw needs libssp for hardening with dlls (Cory Fields) e0077de build: make a distinction between static app ldflags and static lib ldflags (Cory Fields)
2014-11-20qt: Make askpassphrase dialog behave more sanelyWladimir J. van der Laan
Set minimum sizes appropriately, and make sure that they are enforced. Replaces #5226.
2014-11-20Check block header before accepting it.Daniel Kraft
Previously, AcceptBlockHeader did not check the header (in particular PoW). This made the client accept invalid-PoW-headers from peers in headers-first sync.
2014-11-19build: pad header for osx libsCory Fields
This ensures that users of the lib will be able to mangle the paths to work in their bundles.
2014-11-19build: fix static dll link for mingwCory Fields
dll's are no longer dynamically linked to libgcc/libstdc++/libssp
2014-11-19build: shared lib build should work reasonably well nowCory Fields
2014-11-19build: add quick consensus lib testsCory Fields
They should be hooked up in other places as well, but this is a start.
2014-11-19build: add --with-libs so that libs are optionalCory Fields
2014-11-19build: add libbitcoinconsensus files and hook up the lib buildCory Fields
Credit BlueMatt for libbitcoinsonsensus.h/cpp
2014-11-19build: remove internal/protected build attribute checksCory Fields
They're not necessary, and not always supported. We only need to know about hidden and default.
2014-11-19build: check visibility attributesCory Fields
2014-11-19build: mingw needs libssp for hardening with dllsCory Fields
2014-11-19build: make a distinction between static app ldflags and static lib ldflagsCory Fields
For windows builds, exe's are always static, but libs should still conform to --enabled-shared and --enable-static.
2014-11-20Update comments in src/rpc* to be doxygen compatibleMichael Ford
2014-11-19doc: add libgmp dependency for secp256k1Wladimir J. van der Laan
Also reorganize the document a bit.
2014-11-19Merge pull request #5200Wladimir J. van der Laan
c1c9d5b [Qt] Add Smartfee to GUI (Cozz Lovan) e7876b2 [Wallet] Prevent user from paying a non-sense fee (Cozz Lovan) ed3e5e4 [Wallet] Add global boolean whether to pay at least the custom fee (default=true) (Cozz Lovan) 0ed9675 [Wallet] Add global boolean whether to send free transactions (default=true) (Cozz Lovan)
2014-11-19[Qt] Add Smartfee to GUICozz Lovan
2014-11-19[Wallet] Prevent user from paying a non-sense feeCozz Lovan
2014-11-19[Wallet] Add global boolean whether to pay at least the custom fee ↵Cozz Lovan
(default=true)
2014-11-19[Wallet] Add global boolean whether to send free transactions (default=true)Cozz Lovan
2014-11-19gmp needed to build on OSXGavin Andresen
2014-11-19Merge pull request #5313Wladimir J. van der Laan
230f7a8 Remove unused ecwrapper code (Pieter Wuille)
2014-11-19Merge pull request #5296Wladimir J. van der Laan
0ceab00 [Qt, OSX] move QProgressBarMac to guiutil.h (Jonas Schnelli) 6093aa1 [Qt, OSX] QProgressBar CPU-Issue workaround (Jonas Schnelli)
2014-11-19[Qt, OSX] move QProgressBarMac to guiutil.hJonas Schnelli
2014-11-19Remove unused ecwrapper codePieter Wuille
2014-11-19Merge pull request #5220Wladimir J. van der Laan
f9e40fb revert part of 9eda1620b (Cory Fields) 4300876 build: secp256k1 as a subdir, since it's required (Cory Fields) 0dc8613 build: fixup configure to not export anything (Cory Fields) 54566de depends: quit exporting in config.site (Cory Fields) ff1e5ba depends: add gmp package (Cory Fields) cf61b54 Don't use bashisms in configure (Pieter Wuille) dffb8f8 Use libsecp256k1 in key.cpp (Pieter Wuille) 4c97c64 Do not use EC code in global constructors (Pieter Wuille) 07a9901 Always build and link libsecp256k1 (Pieter Wuille) d48555b Squashed 'src/secp256k1/' content from commit ad2028f (Pieter Wuille) 7a7e109 Delete src/secp256k1 before subtree import (Pieter Wuille)
2014-11-19Merge pull request #5279Wladimir J. van der Laan
6c8c704 [docs] Add mini-"howto" using Qt Creator (osx) (Jonas Schnelli)
2014-11-19Merge pull request #5300Wladimir J. van der Laan
a7f2941 [Qt, OSX] fix usage of osx 10.8+ user notification center (Jonas Schnelli)
2014-11-19Merge pull request #5291Wladimir J. van der Laan
7ab4358 Update bash-completion for v0.10 (Christian von Roques)
2014-11-18Merge pull request #5280Gavin Andresen
3c30f27 travis: disable rpc tests for windows until they're not so flaky (Cory Fields) daf03e7 RPC tests: create initial chain with specific timestamps (Gavin Andresen) a8b2ce5 regression test only setmocktime RPC call (Gavin Andresen)
2014-11-18Merge pull request #5301Jeff Garzik
2014-11-18revert part of 9eda1620bCory Fields
This probably would've broken native OSX builds
2014-11-18build: secp256k1 as a subdir, since it's requiredCory Fields
2014-11-18build: fixup configure to not export anythingCory Fields
2014-11-18depends: quit exporting in config.siteCory Fields
2014-11-18depends: add gmp packageCory Fields
2014-11-18Don't use bashisms in configurePieter Wuille
2014-11-18Use libsecp256k1 in key.cppPieter Wuille
2014-11-18Do not use EC code in global constructorsPieter Wuille
2014-11-18Always build and link libsecp256k1Pieter Wuille
2014-11-18Merge commit 'd48555b36ac512161b81f9b6bca7bea16a0cd806' as 'src/secp256k1'Pieter Wuille
2014-11-18Delete src/secp256k1 before subtree importPieter Wuille
2014-11-18Squashed 'src/secp256k1/' content from commit ad2028fPieter Wuille
git-subtree-dir: src/secp256k1 git-subtree-split: ad2028f9890ca40bdd32055aa0fe5c1c9af0e485
2014-11-18Properly lock cs_main in rest_blockPieter Wuille
2014-11-18HTTP REST: minor fixesJeff Garzik
1) const-ify internal helper ParseHashStr() 2) use HTTPError() helper when returning HTTP_NOT_FOUND