Wladimir J. van der Laan
80d1f2e483
Merge #7184 : Implement SequenceLocks functions for BIP 68
...
b043c4b fix sdaftuar's nits again (Alex Morcos)
a51c79b Bug fix to RPC test (Alex Morcos)
da6ad5f Add RPC test exercising BIP68 (mempool only) (Suhas Daftuar)
c6c2f0f Implement SequenceLocks functions (Alex Morcos)
2016-02-12 17:03:46 +01:00
Wladimir J. van der Laan
621940e040
Merge #7520 : LibreSSL doesn't define OPENSSL_VERSION, use LIBRESSL_VERSION_TEXT instead
...
a0a17b3 LibreSSL doesn't define OPENSSL_VERSION, use LIBRESSL_VERSION_TEXT instead (Pavel Janík)
2016-02-12 13:06:02 +01:00
Wladimir J. van der Laan
02d707ff37
Merge #7523 : Fix of semantic failure "meet pay"
...
e473c2d Fix of semantic failure "meet pay" (wodry)
2016-02-12 10:11:38 +01:00
wodry
e473c2dd02
Fix of semantic failure "meet pay"
...
"do not meet pay the minimum relay fee" ? I can understand English language quite well, but that I do not understand. So, if it's not an semantic nonsense, I would suggest to write it in more simple English.
2016-02-12 09:50:32 +01:00
Pavel Janík
a0a17b3e44
LibreSSL doesn't define OPENSSL_VERSION, use LIBRESSL_VERSION_TEXT instead
2016-02-12 07:01:33 +01:00
jmacwhyte
8aa722609d
Fix IsInitialBlockDownload to play nice with testnet
2016-02-11 18:02:46 -08:00
Alex Morcos
5a2b1c0c8b
Don't resend wallet txs that aren't in our own mempool
2016-02-11 17:34:55 -05:00
Alex Morcos
b043c4b746
fix sdaftuar's nits again
...
it boggles the mind why these nits can't be delivered on a more timely basis
2016-02-11 15:34:04 -05:00
Wladimir J. van der Laan
0ecb3401fe
test: Script_error checking in script_invalid tests
...
Check the returned script_error. Add expected script_error
for generated as well as custom tests.
The specific error is not part of consensus, however
it could avoid unclear reporting issues such as #6862 in the future.
Fixes #7513 .
2016-02-11 17:33:28 +01:00
Wladimir J. van der Laan
2317ad7c56
test: Re-introduce JSON pretty printing in test builder
2016-02-11 17:33:28 +01:00
Wladimir J. van der Laan
b0ff8572ae
test: Move non-generated script_invalid test to the correct place
...
This test was introduced in 9fadf1c874 ,
but accidentally added in the autogenerated area.
2016-02-11 16:16:40 +01:00
Wladimir J. van der Laan
04503f78c7
Merge #7346 : 0.12 release notes: Mining Policy Changes
...
b460004 release-notes: Minor corrections and clarifications re Priority (Luke Dashjr)
3450f4c release-notes: Significantly rewrite priority transactions section (Gregory Maxwell)
d0dbb6d release-notes: Remove suggestion to use 0.11 (Luke Dashjr)
73a0375 release-notes: Mention possibility of priority removal in 0.13, uncertainty of priority calculation being changed back, and request community input (Luke Dashjr)
4b8d2bc release-notes: Cover priority changes correctly, removing mentions of possible futures (Luke Dashjr)
2016-02-11 15:30:20 +01:00
Luke Dashjr
1fb91b3496
Common argument defaults for NODE_BLOOM stuff and -wallet
2016-02-11 06:38:04 +00:00
Leviathn
8d1de43f0c
Remove internal miner
...
This code removes the internal miner which is only useful on Testnet.
This leaves the internal miner that is useful on RegTest intact.
2016-02-10 18:29:13 -08:00
Alex Morcos
a51c79be6b
Bug fix to RPC test
2016-02-10 16:01:04 -05:00
Wladimir J. van der Laan
772863583c
doc: fix author list in release notes
2016-02-10 21:37:49 +01:00
Suhas Daftuar
da6ad5f684
Add RPC test exercising BIP68 (mempool only)
2016-02-10 15:35:33 -05:00
Alex Morcos
c6c2f0fd78
Implement SequenceLocks functions
...
SequenceLocks functions are used to evaluate sequence lock times or heights per BIP 68.
The majority of this code is copied from maaku in #6312
Further credit: btcdrak, sipa, NicolasDorier
2016-02-10 15:35:33 -05:00
Wladimir J. van der Laan
68134263e2
qt: Translation update pre-rc5
2016-02-10 21:18:33 +01:00
Pavel Janík
ae6eca0f49
make clean should clean .a files
2016-02-10 21:03:51 +01:00
Wladimir J. van der Laan
10be44a0bb
doc: Release notes update pre-rc5
2016-02-10 21:03:40 +01:00
instagibbs
c3faf78c0e
Changed getnetworkhps value to double to avoid overflow.
...
Github-Pull; #7480
Rebased-From: 993d089e82
2016-02-10 20:45:42 +01:00
mrbandrews
947c4ff724
[rpc-tests] Change solve() to use rehash
...
Github-Pull: #7468
Rebased-From: 7689041c03
2016-02-10 20:39:52 +01:00
Matt
9cb31e664a
Fix spelling: misbeha{b,v}ing
...
Github-Pull: #7469
Rebased-From: 0830552673
2016-02-10 20:38:10 +01:00
Pieter Wuille
889e5b3050
Correctly report high-S violations
...
Github-Pull: #7500
Rebased-From: 9d95187d5d
2016-02-10 20:32:42 +01:00
Wladimir J. van der Laan
2f3f4af4cc
Merge #7500 : Correctly report high-S violations
...
9d95187 Correctly report high-S violations (Pieter Wuille)
2016-02-10 20:32:13 +01:00
Pieter Wuille
1329963001
Update the wallet best block marker when pruning
...
Github-Pull: #7502
Rebased-From: e4eebb604e
2016-02-10 19:59:01 +01:00
Wladimir J. van der Laan
00ec73e062
wallet: Ignore MarkConflict if block hash is not known
...
If number of conflict confirms cannot be determined, this means
that the block is still unknown or not yet part of the main chain,
for example during a reindex. Do nothing in that case,
instead of crash with an assertion.
Fixes #7234 .
Github-Pull: #7491
Rebased-From: 40e7b61835
2016-02-10 19:58:19 +01:00
Wladimir J. van der Laan
b93f078496
Merge #7502 : Update the wallet best block marker when pruning
...
e4eebb6 Update the wallet best block marker when pruning (Pieter Wuille)
2016-02-10 19:39:54 +01:00
Wladimir J. van der Laan
c9da9c4bd8
Merge #7491 : wallet: Ignore MarkConflict if block hash is not known
...
40e7b61 wallet: Ignore MarkConflict if block hash is not known (Wladimir J. van der Laan)
2016-02-10 18:56:51 +01:00
Pieter Wuille
e4eebb604e
Update the wallet best block marker when pruning
2016-02-10 17:11:13 +01:00
Pieter Wuille
9d95187d5d
Correctly report high-S violations
2016-02-10 14:19:20 +01:00
Wladimir J. van der Laan
d007511ebd
Merge #7490 : tests: Remove May15 test
...
acf5983 tests: Remove May15 test (Wladimir J. van der Laan)
2016-02-10 12:32:21 +01:00
Luke Dashjr
b46000415c
release-notes: Minor corrections and clarifications re Priority
2016-02-09 23:31:30 +00:00
Gregory Maxwell
3450f4cc95
release-notes: Significantly rewrite priority transactions section
2016-02-09 23:21:36 +00:00
Luke Dashjr
149641e8fc
Travis: Use Blue Box VMs for IPv6 loopback support
2016-02-09 22:17:09 +00:00
Luke Dashjr
c01f08db12
Bugfix: depends/Travis: Use --location (follow redirects) and --fail [on HTTP error response] with curl
2016-02-09 22:15:28 +00:00
Luke Dashjr
d0dbb6daee
release-notes: Remove suggestion to use 0.11
2016-02-09 21:28:57 +00:00
Wladimir J. van der Laan
40e7b61835
wallet: Ignore MarkConflict if block hash is not known
...
If number of conflict confirms cannot be determined, this means
that the block is still unknown or not yet part of the main chain,
for example during a reindex. Do nothing in that case,
instead of crash with an assertion.
Fixes #7234 .
2016-02-09 20:38:31 +01:00
Wladimir J. van der Laan
acf5983502
tests: Remove May15 test
...
This test is no longer relevant.
It was introduced in 8c222dca4f to check
the switch to 1MB blocks after the BDB too-many-locks issue back in
2013. The switching code has been long since removed.
It also needs a specific data file that is hard to find. I've verified
in #6320 that it still passes, however I think there is zero reason to
keep it.
Closes #6320 .
2016-02-09 16:23:52 +01:00
Wladimir J. van der Laan
7539f1aae3
tests: Make proxy_test work on travis servers without IPv6
2016-02-09 12:37:05 +01:00
Wladimir J. van der Laan
b49a623799
Merge #7480 : Changed getnetworkhps value to double to avoid overflow.
...
993d089 Changed getnetworkhps value to double to avoid overflow. (instagibbs)
2016-02-09 11:08:40 +01:00
Wladimir J. van der Laan
827a2b6736
qt: Translations update pre-rc4
2016-02-09 10:53:13 +01:00
Wladimir J. van der Laan
43484d7c08
doc: Update release notes for rc4 changes
2016-02-09 10:50:05 +01:00
Luke Dashjr
73a0375ebe
release-notes: Mention possibility of priority removal in 0.13, uncertainty of priority calculation being changed back, and request community input
2016-02-09 08:13:38 +00:00
Suhas Daftuar
e16f5b40c2
Update nQueuedValidatedHeaders after peer disconnection
...
Github-Pull: #7482
Rebased-From: 301bc7bc7e
2016-02-09 08:55:03 +01:00
Wladimir J. van der Laan
3ffe4b241e
Merge #7482 : [P2P] Ensure headers count is correct
...
301bc7b Update nQueuedValidatedHeaders after peer disconnection (Suhas Daftuar)
2016-02-09 08:54:25 +01:00
Wladimir J. van der Laan
b2f2b85ad5
rpc: Add WWW-Authenticate header to 401 response
...
A WWW-Authenticate header must be present in the 401
response to make clients know that they can authenticate,
and how.
WWW-Authenticate: Basic realm="jsonrpc"
Fixes #7462 .
Github-Pull: #7472
Rebased-From: 7c06fbd8f5
2016-02-09 08:52:33 +01:00
Wladimir J. van der Laan
3db828f951
Merge #7472 : rpc: Add WWW-Authenticate header to 401 response
...
7c06fbd rpc: Add WWW-Authenticate header to 401 response (Wladimir J. van der Laan)
2016-02-09 08:52:02 +01:00
Luke Dashjr
5d1148cb79
Travis: Use curl rather than wget for Mac SDK
2016-02-09 05:53:39 +00:00