Pieter Wuille
d1062e32fa
Merge pull request #4377
...
654871d
replace ComputeMinWork with CheckMinWork (jtimon)
b343c1a
Move CBlockIndex::GetBlockWork() to pow::GetProofIncrement(nBits) (jtimon)
c2c02f3
Move UpdateTime to pow (jtimon)
10 years ago
Pieter Wuille
cd3d80be67
Merge pull request #4764
...
92bb6f2
Bypass reloading blocks from disk (Pieter Wuille)
10 years ago
Wladimir J. van der Laan
70352e11c0
Revert "Add a getutxos command to the p2p protocol. It allows querying of the UTXO set"
...
This reverts commit da2ec100f3
.
10 years ago
Wladimir J. van der Laan
fd452c254f
Merge pull request #4752
...
df7565d
depends: add sensible download timeout/retry values (Cory Fields)
c897b1e
depends: add a fallback path in case package sources go missing (Cory Fields)
10 years ago
Cory Fields
df7565d99c
depends: add sensible download timeout/retry values
10 years ago
Wladimir J. van der Laan
f30801afbd
qt: Add null check in setClientModel(0)
...
Don't clear tray icon menu if it was never created.
Necessary precaution after #4649 .
10 years ago
Wladimir J. van der Laan
d49b0876a4
Merge pull request #4673
...
1c5f0af
[Qt] Add column Watch-only to transactions list (Cozz Lovan)
939ed97
Add boolean HaveWatchonly and signal NotifyWatchonlyChanged (Cozz Lovan)
10 years ago
Wladimir J. van der Laan
b9bd6282c5
Merge pull request #4649
...
b197bf3
[Qt] disable tray interactions when client model set to 0 (Philip Kaufmann)
314fbd9
[Qt] use BitcoinGUI::DEFAULT_WALLET constant in bitcoin.cpp (Philip Kaufmann)
8ca6a16
[Qt] ensure all class attributes are init to 0 (Philip Kaufmann)
10 years ago
Pieter Wuille
3da58b216b
Merge pull request #4748
...
ad49c25
Split up util.cpp/h (Wladimir J. van der Laan)
f841aa2
Move `COIN` and `CENT` to core.h (Wladimir J. van der Laan)
6e5fd00
Move `*Version()` functions to version.h/cpp (Wladimir J. van der Laan)
b4aa769
Move `S_I*` constants and `MSG_NOSIGNAL` to compat.h (Wladimir J. van der Laan)
af8297c
Move functions in wallet.h to implementation file (Wladimir J. van der Laan)
651480c
move functions in main and net to implementation files (Wladimir J. van der Laan)
610a8c0
Move SetThreadPriority implementation to util.cpp instead of the header (Wladimir J. van der Laan)
f780e65
Remove unused function `ByteReverse` from util.h (Wladimir J. van der Laan)
121d6ad
Remove unused `alignup` function from util.h (Wladimir J. van der Laan)
d1e26d4
Move CMedianFilter to timedata.cpp (Wladimir J. van der Laan)
10 years ago
Pieter Wuille
727298cef3
Merge pull request #4763
...
aa41ac2
Test IsPushOnly() with invalid push (Peter Todd)
10 years ago
Pieter Wuille
790911ff0a
Merge pull request #4561
...
d0867ac
Use const CCoinsView's at some places. (Daniel Kraft)
a3dc587
Make appropriate getter-routines "const" in CCoinsView. (Daniel Kraft)
ffb4c21
Mark LevelDB "Read" and "Exists" functions as const. (Daniel Kraft)
10 years ago
Wladimir J. van der Laan
ad49c256c3
Split up util.cpp/h
...
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
10 years ago
Wladimir J. van der Laan
f841aa2892
Move `COIN` and `CENT` to core.h
...
Eventually these should end up in `money.h` after monetary
amounts are typedef'ed, but at least they don't belong in `util.h`.
10 years ago
Wladimir J. van der Laan
6e5fd003e0
Move `*Version()` functions to version.h/cpp
10 years ago
Wladimir J. van der Laan
b4aa769bcb
Move `S_I*` constants and `MSG_NOSIGNAL` to compat.h
10 years ago
Wladimir J. van der Laan
af8297c010
Move functions in wallet.h to implementation file
...
Breaks compile-time dependency of wallet.h on util.
10 years ago
Wladimir J. van der Laan
651480c8e4
move functions in main and net to implementation files
10 years ago
Wladimir J. van der Laan
610a8c0759
Move SetThreadPriority implementation to util.cpp instead of the header
...
Put the THREAD_* and PRIO_ constants in compat.h.
10 years ago
Wladimir J. van der Laan
f780e65ac6
Remove unused function `ByteReverse` from util.h
10 years ago
Wladimir J. van der Laan
121d6ad9db
Remove unused `alignup` function from util.h
10 years ago
Wladimir J. van der Laan
d1e26d4e71
Move CMedianFilter to timedata.cpp
...
Now that we no longer use the median filter to keep track of
the number of blocks of peers, that's the only place it is used.
10 years ago
Daniel Kraft
d0867acb0e
Use const CCoinsView's at some places.
...
At some places where it is possible (e. g., CheckInputs), use a const
version of CCoinsView instead of a non-const one.
10 years ago
Daniel Kraft
a3dc587a62
Make appropriate getter-routines "const" in CCoinsView.
...
Mark the "Get"/"Have" routines in CCoinsView and subclasses as "const".
10 years ago
Daniel Kraft
ffb4c210bc
Mark LevelDB "Read" and "Exists" functions as const.
...
Mark the "Read" and "Exists" functions in CLevelDBWrapper as "const".
They do not change anything in the DB, by definition.
10 years ago
Wladimir J. van der Laan
0d763fc9e1
Merge pull request #4749
...
425c7a8
travis: add doc (Cory Fields)
9380d01
travis: initial descriptor (Cory Fields)
386efb7
build: work around ccache/autotools warning-spamming bug (Cory Fields)
10 years ago
Pieter Wuille
92bb6f2f17
Bypass reloading blocks from disk
10 years ago
Cory Fields
425c7a8389
travis: add doc
10 years ago
Cory Fields
9380d019a1
travis: initial descriptor
10 years ago
Wladimir J. van der Laan
49f954f154
Merge pull request #4716
...
0d27dad
Clean-up SyncWithWallets/SyncTransaction (Cozz Lovan)
10 years ago
Wladimir J. van der Laan
26f3a05cf1
Merge pull request #4654
...
c4a7709
Fixes ignored qt 4.8 codecs path on windows when configuring with --with-qt-libdir (ntrgn)
10 years ago
Wladimir J. van der Laan
11270ebde4
Merge pull request #4351
...
da2ec10
Add a getutxos command to the p2p protocol. It allows querying of the UTXO set given a set of outpoints. (Mike Hearn)
10 years ago
Peter Todd
aa41ac216e
Test IsPushOnly() with invalid push
10 years ago
Pieter Wuille
41abb02122
Merge pull request #4683
...
fff7455
Make CScript::clear() release its memory (Pieter Wuille)
b0875eb
Allow BatchWrite to destroy its input, reducing copying (Pieter Wuille)
10 years ago
Jeff Garzik
087eb43cff
Merge pull request #4757
10 years ago
Jeff Garzik
b4a72a75b4
contrib/linearize: split output files based on new-timestamp-year or max-file-size
10 years ago
Jeff Garzik
476eb7eb53
Update linearize scripts.
...
Break into two steps:
* Generate hash list
* Build data file(s) from local bitcoind blocks/ directory.
This supports building one large bootstrap.dat, or multiple
smaller blocks/blkNNNNN.dat files.
10 years ago
Pieter Wuille
fff7455ded
Make CScript::clear() release its memory
10 years ago
Pieter Wuille
b0875eb3fe
Allow BatchWrite to destroy its input, reducing copying
10 years ago
Pieter Wuille
5cd00bc8cb
Merge pull request #4618
...
eb0b56b
Simplify serialize.h's exception handling (Pieter Wuille)
10 years ago
Jeff Garzik
57fe1eaadc
Merge pull request #4632
10 years ago
jtimon
654871d436
replace ComputeMinWork with CheckMinWork
10 years ago
jtimon
b343c1a1e3
Move CBlockIndex::GetBlockWork() to pow::GetProofIncrement(nBits)
10 years ago
jtimon
c2c02f3fa9
Move UpdateTime to pow
10 years ago
Wladimir J. van der Laan
92b3d3630d
Merge pull request #4718
...
88fe88c
gui: remove redundant numTransactions tracking (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
0a670bf5d7
Merge pull request #4753
...
df920c6
Build-osx: Force Fix. (Dominyk Tiller)
5a61553
Build-osx: Force Fix. (Dominyk Tiller)
10 years ago
Dominyk Tiller
df920c6d49
Build-osx: Force Fix.
...
Kills the "make" line as well.
10 years ago
Dominyk Tiller
5a61553a14
Build-osx: Force Fix.
...
Removes the unnecessary directions that encourage people to force install openssl into /usr/local with Homebrew. Unnecessary, and potentially quite risky. @theuni okayed this removal [here](https://github.com/bitcoin/bitcoin/pull/4740#issuecomment-53076840 ).
10 years ago
Cory Fields
c897b1e732
depends: add a fallback path in case package sources go missing
...
If a source url fails to download, try again at
$FALLBACK_DOWNLOAD_PATH/file.name, where FALLBACK_DOWNLOAD_PATH can be
overridden by the user.
10 years ago
Jeff Garzik
fac54dcb71
Merge pull request #4733
10 years ago
Wladimir J. van der Laan
0b00bd3792
Merge pull request #4736
...
5d9f22b
Remove link to now removed Windows Build Notes (Michael Ford)
10 years ago