Jeff Garzik
6f2c26a457
Closely track mempool byte total. Add "getmempoolinfo" RPC.
...
Goal: Gain live insight into the mempool. Groundwork for future work
that caps mempool size.
10 years ago
Jeff Garzik
c7b6117deb
Create new signal for notification of new blocks. Use w/ -blocknotify
10 years ago
Jeff Garzik
beb36e800c
ui_interface: remove unused NotifyBlocksChanged signal
10 years ago
Cozz Lovan
da2ede2aa6
[Wallet] Improve ReorderTransactions(..)
10 years ago
Wladimir J. van der Laan
7accb7dbad
Merge pull request #4659
...
c4bae53
[Qt] move SubstituteFonts() above ToolTipToRichTextFilter (Philip Kaufmann)
10 years ago
Wladimir J. van der Laan
99170259d2
Merge pull request #4696
...
616c243
bitcoin-tx: fix build warnings (Cory Fields)
10 years ago
Cory Fields
616c24307f
bitcoin-tx: fix build warnings
...
Cleans up a bunch of:
warning: missing braces around initializer for ‘const<anonymous struct>’
10 years ago
Peter Todd
9ee09dc64f
Reapply: Reject transactions with excessive numbers of sigops
...
Reverting was based on a misunderstanding, it appears.
Github-Pull: #4150
10 years ago
Wladimir J. van der Laan
ce094d83ce
Merge pull request #4682
...
c33b983
Don't poll showmyip.com, it doesn't exist anymore (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
c33b983903
Don't poll showmyip.com, it doesn't exist anymore
...
Fixes #4679 .
This leaves us with only one candidate, checkip.dyndns.org.
GetMyExternalIP should be phased out as soon as possible.
10 years ago
Wladimir J. van der Laan
3b72fdfb86
Revert "Reject transactions with excessive numbers of sigops"
...
This reverts commit 4fad8e6d83
.
10 years ago
Wladimir J. van der Laan
8ebe42435a
Merge pull request #4150
...
4fad8e6
Reject transactions with excessive numbers of sigops (Peter Todd)
10 years ago
Wladimir J. van der Laan
e257b7c4c4
Merge pull request #4675
...
ea100c7
Reduce maximum coinscache size during verification (Wladimir J. van der Laan)
10 years ago
ntrgn
8bfdc9acaa
qt: better looking trayicon
...
Github-Pull: #4678
Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
10 years ago
Wladimir J. van der Laan
4c61ba40b9
build: check for sys/prctl.h in the proper way
...
Use AC_CHECK_HEADERS to check for the header, and include it only
if detected and the subsequent HAVE_SYS_PRCTL_H is set.
10 years ago
Wladimir J. van der Laan
76c49c4138
Fix thread name setting
...
Because of a typo, thread names no longer appeared in the overview.
This was broken in 51ed9ec
.
10 years ago
Wladimir J. van der Laan
a38a98c476
Merge pull request #4603
...
f0c2915
Simplify and rename CheckWork to ProcessBlockFound (jtimon)
10 years ago
Wladimir J. van der Laan
a63e86e01d
Merge pull request #4680
...
a381ee5
Remove unnecessary typedef and script.h include (jtimon)
10 years ago
Wladimir J. van der Laan
47963936d6
Merge pull request #4681
...
54e658f
Remove unused CKeyStoreIsMineVisitor (jtimon)
10 years ago
jtimon
a381ee5d1c
Remove unnecessary typedef and script.h include
10 years ago
jtimon
54e658f249
Remove unused CKeyStoreIsMineVisitor
10 years ago
Cozz Lovan
1c5f0af0fd
[Qt] Add column Watch-only to transactions list
10 years ago
Cozz Lovan
939ed97373
Add boolean HaveWatchonly and signal NotifyWatchonlyChanged
10 years ago
Wladimir J. van der Laan
8b11d3de7a
Merge pull request #4592
...
1dec09b
depends: add shared dependency builder (Cory Fields)
10 years ago
Wladimir J. van der Laan
d17ce77fc1
Merge pull request #4664
...
565e569
libc-compat: add new symbol that's now needed (Cory Fields)
8021cf8
build: fix FDELT_TYPE configure check (Cory Fields)
10 years ago
Cozz Lovan
6b5b7cbfb4
Categorize rpc help overview
...
Conflicts:
src/rpcserver.cpp
Github-Pull: #4539
Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
Rebased-From: df3d321
10 years ago
Wladimir J. van der Laan
fecab8773d
Merge pull request #4666
...
ab45ddb
Fix typo in gettransaction help (Derek701)
10 years ago
Wladimir J. van der Laan
3e089a00e7
Merge pull request #4668
...
9297763
[Qt] Add TRY_LOCK back to peertablemodel (Cozz Lovan)
10 years ago
Wladimir J. van der Laan
85af3856e7
Merge pull request #4622
...
c7f3876
URLs containing a / after the address no longer cause parsing errors. (Ross Nicoll)
10 years ago
Wladimir J. van der Laan
ea96475d23
build: Add mention of --disable-wallet to bdb48 error messages
10 years ago
Mike Hearn
da2ec100f3
Add a getutxos command to the p2p protocol. It allows querying of the UTXO set
...
given a set of outpoints.
10 years ago
Wladimir J. van der Laan
ea100c73fa
Reduce maximum coinscache size during verification
...
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.
10 years ago
Matt Corallo
a35b55b522
Dont run full check every time we decrypt wallet.
10 years ago
Gregory Maxwell
1e21c17d20
Make CCryptoKeyStore::Unlock check all keys.
...
CCryptoKeyStore::Unlock has a loop to attempt decrypting each key which
only executes once, likely due to a simple mistake when the code was
originally written.
This patch fixes the behavior by making it check all keys. It also adds
a fatal assertion in the case some decrypt but some do not, since that
indicates that the wallet is in some kind of really bad state.
This may make unlocking noticeably slower on wallets with many keys.
10 years ago
Philip Kaufmann
22b3c4bbbd
remove unused class CAddrMan; from db.h
10 years ago
Cozz Lovan
9297763dad
[Qt] Add TRY_LOCK back to peertablemodel
10 years ago
Derek701
ab45ddb599
Fix typo in gettransaction help
10 years ago
Pieter Wuille
eb0b56b190
Simplify serialize.h's exception handling
...
Remove the 'state' and 'exceptmask' from serialize.h's stream implementations,
as well as related methods.
As exceptmask always included 'failbit', and setstate was always called with
bits = failbit, all it did was immediately raise an exception. Get rid of
those variables, and replace the setstate with direct exception throwing
(which also removes some dead code).
As a result, good() is never reached after a failure (there are only 2
calls, one of which is in tests), and can just be replaced by !eof().
fail(), clear(n) and exceptions() are just never called. Delete them.
10 years ago
Pieter Wuille
216e9a4456
Add a way to limit deserialized string lengths
...
and use it for most strings being serialized.
10 years ago
Cory Fields
565e569772
libc-compat: add new symbol that's now needed
10 years ago
Cory Fields
8021cf8dbc
build: fix FDELT_TYPE configure check
...
This probably never worked properly. Confirmed working now with every compiler
I throw at it.
10 years ago
Cory Fields
1dec09b341
depends: add shared dependency builder
...
See the README's in depends for documentation
10 years ago
Ross Nicoll
c7f3876d4a
URLs containing a / after the address no longer cause parsing errors.
10 years ago
Jeff Garzik
36065cc529
Merge branch 'patch-4' of git://github.com/benhc123/bitcoin into merge-PR4653
...
Merge #4653
10 years ago
Philip Kaufmann
b197bf3270
[Qt] disable tray interactions when client model set to 0
...
- this prevents the ability to fiddle around with the system tray when
already shutting down (e.g. on slow shutdowns because of a proxy delay)
- extends solution for #4360
10 years ago
Philip Kaufmann
314fbd9ac7
[Qt] use BitcoinGUI::DEFAULT_WALLET constant in bitcoin.cpp
10 years ago
Philip Kaufmann
8ca6a16176
[Qt] ensure all class attributes are init to 0
...
- in BitcoinGUI and UnitDisplayStatusBarControl
10 years ago
Wladimir J. van der Laan
f5d99075bf
Merge pull request #4635
...
6c23b08
CCoinsKeyHasher::operator() should return size_t (Wladimir J. van der Laan)
10 years ago
Philip Kaufmann
c4bae53092
[Qt] move SubstituteFonts() above ToolTipToRichTextFilter
...
- doesn't belong to the ToolTipToRichTextFilter class so move it up
10 years ago
Wladimir J. van der Laan
fffe947c48
Merge pull request #4627
...
94e1b9e
[Qt] re-work overviewpage UI (Philip Kaufmann)
10 years ago