Cory Fields
be656283f9
gitian: bump faketime to something more recent
...
This helps in file views where binaries are sorted by time
10 years ago
Cory Fields
c3cdd7b312
osx: set min version to 10.7 for 0.11+
10 years ago
Wladimir J. van der Laan
f00b62391b
Merge pull request #6203
...
d449772
Remove P2SH coinbase flag, no longer interesting (Luke Dashjr)
10 years ago
Wladimir J. van der Laan
0e4f2a0a1f
Merge pull request #6210
...
7fd5b80
build: disable optional use of gmp in internal secp256k1 build (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
88a7ead5de
Merge pull request #6172
...
a1ba077
Ignore getheaders requests when not synced. (Suhas Daftuar)
10 years ago
Wladimir J. van der Laan
87550eefc1
Merge pull request #6183
...
28bf062
Fix off-by-one error w/ nLockTime in the wallet (Peter Todd)
10 years ago
Wladimir J. van der Laan
8d05ec7bda
Merge pull request #6164
...
aa41bc8
Update help message to match the #4219 change (lpescher)
f60bb5e
Update documentation to match the #4219 change (lpescher)
cb87386
Make command line option to show all debugging consistent with similar options (lpescher)
10 years ago
Wladimir J. van der Laan
4f1677b6ba
Merge pull request #6198
...
0bb4385
Improve comment explaining purpose of MAX_MONEY constant (Peter Todd)
10 years ago
Wladimir J. van der Laan
7fd5b801ff
build: disable optional use of gmp in internal secp256k1 build
...
Until secp256k1 is used for verification there is no reason for Bitcoin
Core's secp256k1 to link against gmp, even if available. Pass a flag to
configure to override the bignum implementation.
This fixes a crash at runtime on ppc64 reported by @gmaxwell .
10 years ago
Wladimir J. van der Laan
3e8ccc765a
Now that 0.11 has been branched, master is 0.11.99
...
... in preparation for 0.12
10 years ago
Wladimir J. van der Laan
e9d0d252fc
Merge pull request #6208
...
d6922aa
[net, trivial] remove using namespace std pollution in netbase.cpp (Philip Kaufmann)
49b2292
[net, trivial] explicitly use std::string for FindNode (Philip Kaufmann)
10 years ago
Wladimir J. van der Laan
42746b0476
Merge pull request #6193
...
6e71efa
[REST] remove json input for getutxos, limit to query max. 15 outpoints (Jonas Schnelli)
64b8027
rest.cpp: strip whitespace (Jonas Schnelli)
10 years ago
Wladimir J. van der Laan
921ea89bc3
Merge pull request #6195
...
8273793
Eliminate compiler warning due to unused variable (Suhas Daftuar)
10 years ago
Philip Kaufmann
d6922aad2c
[net, trivial] remove using namespace std pollution in netbase.cpp
10 years ago
Philip Kaufmann
49b22928ee
[net, trivial] explicitly use std::string for FindNode
...
- in OpenNetworkConnection we have a FindNode call, which gets a const
char*, wheras we only have defined a FindNode for std::string
10 years ago
Luke Dashjr
d449772cf6
Remove P2SH coinbase flag, no longer interesting
10 years ago
Wladimir J. van der Laan
b679a6b403
doc: Add to 0.11 release notes
...
Add information about further notable changes:
- Big endian support
- Memory usage optimization
- Disable wallet transaction broadcast
- Stream isolation for Tor
10 years ago
Wladimir J. van der Laan
fb061c3391
Merge pull request #6194
...
ee9a2e4
Fix walletbackup.py after directory restructuring (Suhas Daftuar)
10 years ago
Peter Todd
0bb43854c7
Improve comment explaining purpose of MAX_MONEY constant
10 years ago
Jonas Schnelli
6e71efa9f0
[REST] remove json input for getutxos, limit to query max. 15 outpoints
...
Remove possibility to send json encoded parameters to `/rest/getutxos/` to avoid possible DoS scenarios.
The JSON output option is untouched.
10 years ago
Suhas Daftuar
8273793350
Eliminate compiler warning due to unused variable
10 years ago
Suhas Daftuar
a1ba0778dd
Ignore getheaders requests when not synced.
10 years ago
Wladimir J. van der Laan
ce56f5621a
Merge pull request #6173
...
e697343
Chainparams: Explicit CMessageHeader::MessageStartChars to functions in main: (Jorge Timón)
10 years ago
Jorge Timón
e69734309c
Chainparams: Explicit CMessageHeader::MessageStartChars to functions in main:
...
-UndoWriteToDisk
-WriteBlockToDisk
10 years ago
Suhas Daftuar
ee9a2e4271
Fix walletbackup.py after directory restructuring
...
Also add walletbackup.py to rpc-tests.sh
10 years ago
Wladimir J. van der Laan
c7c9af381c
Merge pull request #5669
...
da29ecb
Consensus: MOVEONLY: Move CValidationState from main consensus/validation (jtimon)
27afcd8
Consensus: Refactor: Decouple CValidationState from main::AbortNode() (Cory Fields)
10 years ago
Wladimir J. van der Laan
2b2d5b92b9
Merge pull request #6189
...
44e1aad
Autoprune release notes included (mrbandrews)
10 years ago
Wladimir J. van der Laan
c608b6daf9
Merge pull request #6097
...
7b7f258
rpc-tests: remove python-bitcoinrpc directory (Jonas Schnelli)
a85b2e2
pull-tester/rpc-tests.sh: disable script_test.py test (Jonas Schnelli)
3e875b1
pull-tester/rpc-tests.sh: allow passing throug of arguments (Jonas Schnelli)
00706a5
update rpc-tests readme.md (Jonas Schnelli)
344e08e
extend rpc-tests.sh control script with non-travis tests (Jonas Schnelli)
64937fe
[QA] restructure rpc tests directory (Jonas Schnelli)
10 years ago
Peter Todd
28bf06236d
Fix off-by-one error w/ nLockTime in the wallet
...
Previously due to an off-by-one error the wallet ignored
nLockTime-by-height transactions that would be valid in the next block
even though they are accepted into the mempool. The transactions
wouldn't show up until confirmed, nor would they be included in the
unconfirmed balance. Similar to the mempool behavior fix in 665bdd3b
,
the wallet code was calling IsFinalTx() directly without taking into
account the fact that doing so tells you if the transaction could have
been mined in the *current* block, rather than the next block.
To fix this we strip IsFinalTx() of non-consensus-critical
functionality, removing the default arguments, and add CheckFinalTx() to
check if a transaction will be final in the next block.
10 years ago
Wladimir J. van der Laan
68aff60e4a
Merge pull request #6190
...
1fe4c4f
gitian-downloader: Update luke-jr's key (Luke Dashjr)
10 years ago
Jonas Schnelli
64b8027c5c
rest.cpp: strip whitespace
10 years ago
Wladimir J. van der Laan
0bcf04f046
Merge pull request #6153
...
8c35b6f
Parameter interaction: disable upnp if -proxy set (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
df992b9c18
Merge pull request #6174
...
213f257
doc: add translation strings policy (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
182686cdbd
Merge pull request #6186
...
b45c50c
Fix two problems in CSubNet parsing (Wladimir J. van der Laan)
19e8d7b
Simplify code for CSubnet (Wladimir J. van der Laan)
10 years ago
Luke Dashjr
1fe4c4fcff
gitian-downloader: Update luke-jr's key
10 years ago
mrbandrews
44e1aad500
Autoprune release notes included
10 years ago
Wladimir J. van der Laan
165e323d85
qt: Periodic translation update
10 years ago
Wladimir J. van der Laan
e3ed6a9785
doc: Add preliminary changelog for 0.11 to release notes
10 years ago
Wladimir J. van der Laan
9f7809f6c3
Merge pull request #5976
...
8ba7f84
Reduce download timeouts as blocks arrive (Suhas Daftuar)
10 years ago
Wladimir J. van der Laan
847be04449
Merge pull request #6187
...
8697ff3
Remove duplicate chainparams.h include from alert_tests (Michael Ford)
10 years ago
Michael Ford
8697ff33ed
Remove duplicate chainparams.h include from alert_tests
10 years ago
Wladimir J. van der Laan
e9af4e65b5
Merge pull request #5947
...
36cba8f
Alert if it is very likely we are getting a bad chain (Gavin Andresen)
10 years ago
Wladimir J. van der Laan
b45c50ce51
Fix two problems in CSubNet parsing
...
Fix two CSubNet constructor problems:
- The use of `/x` where 8 does not divide x was broken, due to a
bit-order issue
- The use of e.g. `1.2.3.4/24` where the netmasked bits in the network
are not 0 was broken. Fix this by explicitly normalizing the netwok
according to the bitmask.
Also add tests for these cases.
Fixes #6179 . Thanks to @jonasschnelli for reporting and initial fix.
10 years ago
Wladimir J. van der Laan
19e8d7be42
Simplify code for CSubnet
...
Simplify the code by using CAddress.ip directly, instead of the reversed
GetByte() semantics.
10 years ago
Wladimir J. van der Laan
e1412d3e96
Merge pull request #6159
...
ffdda4e
Catch errors on datadir lock and pidfile delete (Adam Weiss)
10 years ago
Wladimir J. van der Laan
2d84241d26
doc: Add historical release notes 0.9.5
10 years ago
Wladimir J. van der Laan
213f257a03
doc: add translation strings policy
10 years ago
Adam Weiss
ffdda4e8a7
Catch errors on datadir lock and pidfile delete
...
Prevents bad permissions (or other fs related problems) from resulting
in hard crashes with cryptic messages on startup and shutdown.
10 years ago
Wladimir J. van der Laan
7708fcde36
Merge pull request #6098
...
cc24610
Update Windows resource files (and add one for bitcoin-tx) (Luke Dashjr)
10 years ago
Wladimir J. van der Laan
b3024f077b
Merge pull request #6168
...
7f68c7d
contrib/linearize: Support linearization of testnet blocks (Jeff Garzik)
10 years ago