aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-18Univalue: Do not build JSON escape list at runtimeJeff Garzik
No need to waste startup time building something that can be done at compile time. This also resolves a clang++ warning originally reported in #4714, univalue/univalue_write.cpp:33:12: warning: array subscript is of type 'char escapes['"'] = "\\""; ^~~~ etc.
2014-08-16Merge pull request #4707Wladimir J. van der Laan
a65668d build : fix CPPFLAGS for libbitcoin_cli (randy-waterhouse)
2014-08-16Merge pull request #4710Wladimir J. van der Laan
9322f1a tests: fix test-runner for osx. Closes ##4708 (Cory Fields)
2014-08-15tests: fix test-runner for osx. Closes ##4708Cory Fields
Use the more portable $$ rather than $BASHPID
2014-08-16build : fix CPPFLAGS for libbitcoin_clirandy-waterhouse
2014-08-15Merge pull request #4638Wladimir J. van der Laan
6f2c26a Closely track mempool byte total. Add "getmempoolinfo" RPC. (Jeff Garzik)
2014-08-15build: fix automake warnings about the use of INCLUDESCory Fields
While we're at it, reduce the use of LIBS as well. This makes dependencies explicit. Fixes building with (the not-yet-merged) libsecp256k1 as well. Github-Pull: #4689 Rebased-By: Wladimir J. van der laan <laanwj@gmail.com> Rebased-From: 909b347 c0e5dda
2014-08-14Closely track mempool byte total. Add "getmempoolinfo" RPC.Jeff Garzik
Goal: Gain live insight into the mempool. Groundwork for future work that caps mempool size.
2014-08-14Merge pull request #4659Wladimir J. van der Laan
c4bae53 [Qt] move SubstituteFonts() above ToolTipToRichTextFilter (Philip Kaufmann)
2014-08-14Merge pull request #4696Wladimir J. van der Laan
616c243 bitcoin-tx: fix build warnings (Cory Fields)
2014-08-13bitcoin-tx: fix build warningsCory Fields
Cleans up a bunch of: warning: missing braces around initializer for ‘const<anonymous struct>’
2014-08-13Reapply: Reject transactions with excessive numbers of sigopsPeter Todd
Reverting was based on a misunderstanding, it appears. Github-Pull: #4150
2014-08-13Merge pull request #4682Wladimir J. van der Laan
c33b983 Don't poll showmyip.com, it doesn't exist anymore (Wladimir J. van der Laan)
2014-08-13Don't poll showmyip.com, it doesn't exist anymoreWladimir J. van der Laan
Fixes #4679. This leaves us with only one candidate, checkip.dyndns.org. GetMyExternalIP should be phased out as soon as possible.
2014-08-12Revert "Reject transactions with excessive numbers of sigops"Wladimir J. van der Laan
This reverts commit 4fad8e6d831729efa1965fa2034e7e51d3d0a1be.
2014-08-12Merge pull request #4150Wladimir J. van der Laan
4fad8e6 Reject transactions with excessive numbers of sigops (Peter Todd)
2014-08-12Merge pull request #4675Wladimir J. van der Laan
ea100c7 Reduce maximum coinscache size during verification (Wladimir J. van der Laan)
2014-08-12qt: better looking trayiconntrgn
Github-Pull: #4678 Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
2014-08-12build: check for sys/prctl.h in the proper wayWladimir J. van der Laan
Use AC_CHECK_HEADERS to check for the header, and include it only if detected and the subsequent HAVE_SYS_PRCTL_H is set.
2014-08-12Fix thread name settingWladimir J. van der Laan
Because of a typo, thread names no longer appeared in the overview. This was broken in 51ed9ec.
2014-08-12Merge pull request #4603Wladimir J. van der Laan
f0c2915 Simplify and rename CheckWork to ProcessBlockFound (jtimon)
2014-08-12Merge pull request #4680Wladimir J. van der Laan
a381ee5 Remove unnecessary typedef and script.h include (jtimon)
2014-08-12Merge pull request #4681Wladimir J. van der Laan
54e658f Remove unused CKeyStoreIsMineVisitor (jtimon)
2014-08-12Remove unnecessary typedef and script.h includejtimon
2014-08-12Remove unused CKeyStoreIsMineVisitorjtimon
2014-08-11Merge pull request #4592Wladimir J. van der Laan
1dec09b depends: add shared dependency builder (Cory Fields)
2014-08-11Merge pull request #4664Wladimir J. van der Laan
565e569 libc-compat: add new symbol that's now needed (Cory Fields) 8021cf8 build: fix FDELT_TYPE configure check (Cory Fields)
2014-08-11Categorize rpc help overviewCozz Lovan
Conflicts: src/rpcserver.cpp Github-Pull: #4539 Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com> Rebased-From: df3d321
2014-08-11Merge pull request #4666Wladimir J. van der Laan
ab45ddb Fix typo in gettransaction help (Derek701)
2014-08-11Merge pull request #4668Wladimir J. van der Laan
9297763 [Qt] Add TRY_LOCK back to peertablemodel (Cozz Lovan)
2014-08-11Merge pull request #4622Wladimir J. van der Laan
c7f3876 URLs containing a / after the address no longer cause parsing errors. (Ross Nicoll)
2014-08-11build: Add mention of --disable-wallet to bdb48 error messagesWladimir J. van der Laan
2014-08-11Reduce maximum coinscache size during verificationWladimir J. van der Laan
Due to growing coinsviewcaches, the memory usage with checklevel=3 (and standard settings for dbcache) could be up to 500MiB on a 64-bit system. This is about twice the peak during reindexing, unnecessarily extending bitcoind's memory envelope. This commit reduces the maximum total size of the caches used during verification to just nCoinCacheSize, which should be the limit.
2014-08-10[Qt] Add TRY_LOCK back to peertablemodelCozz Lovan
2014-08-08Fix typo in gettransaction helpDerek701
2014-08-08libc-compat: add new symbol that's now neededCory Fields
2014-08-08build: fix FDELT_TYPE configure checkCory Fields
This probably never worked properly. Confirmed working now with every compiler I throw at it.
2014-08-08depends: add shared dependency builderCory Fields
See the README's in depends for documentation
2014-08-08URLs containing a / after the address no longer cause parsing errors.Ross Nicoll
2014-08-08Merge branch 'patch-4' of git://github.com/benhc123/bitcoin into merge-PR4653Jeff Garzik
Merge #4653
2014-08-08Merge pull request #4635Wladimir J. van der Laan
6c23b08 CCoinsKeyHasher::operator() should return size_t (Wladimir J. van der Laan)
2014-08-08[Qt] move SubstituteFonts() above ToolTipToRichTextFilterPhilip Kaufmann
- doesn't belong to the ToolTipToRichTextFilter class so move it up
2014-08-08Merge pull request #4627Wladimir J. van der Laan
94e1b9e [Qt] re-work overviewpage UI (Philip Kaufmann)
2014-08-08[Qt] re-work overviewpage UIPhilip Kaufmann
- ensure normal and watch-only stuff looks consistent - simplify UI by removing unneeded UI layout elements - change some comments to watch-only from watchonly
2014-08-08Merge pull request #4636Wladimir J. van der Laan
efd6b87 small net cleanup (Philip Kaufmann)
2014-08-08Merge pull request #4643Wladimir J. van der Laan
292cc07 qt: fix unicode character display on osx when building with 10.7 sdk (Cory Fields)
2014-08-08small net cleanupPhilip Kaufmann
- add comment for disabling sigpipe - add closing comment in compat.h - remove redundant check in net.h
2014-08-07qt: fix unicode character display on osx when building with 10.7 sdkCory Fields
2014-08-07Merge pull request #4645Wladimir J. van der Laan
6b271a3 build: fix race in 'make deploy' for windows (Cory Fields) d343460 build: Fix 'make deploy' when binaries haven't been built yet (Cory Fields) 206a7f9 build: hook up qt translations for static osx packaging (Cory Fields) d597219 build: add --with-qt-translationdir to configure for use with static qt (Cory Fields) 71941ce build: teach macdeploy the -translations-dir argument, for use with static qt (Cory Fields) f8120f7 build: Find the proper xcb/pcre dependencies (Cory Fields) eccd585 build: silence mingw fpic warning spew (Cory Fields) a98356f build: don't let libtool insert rpath into binaries (Cory Fields)
2014-08-07Added bullet pointBen Holden-Crowther
To make it easier to add new requirements if necessary