forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
16f4560 doc: small amandment to release notes (Wladimir J. van der Laan) ff32503 Release notes 0.10.2 (Wladimir J. van der Laan) da65606 Avoid crash on start in TestBlockValidity with gen=1. (Gregory Maxwell) 49e4d14 Translations update (Wladimir J. van der Laan) d7e7727 Preparations for 0.10.2 release (Wladimir J. van der Laan) 424ae66 don't imbue boost::filesystem::path with locale "C" on windows (Jonas Schnelli) 824c011 wallet: fix boost::get usage with boost 1.58 (Cory Fields) ebc0e41 qt: translation update for next 0.10 point release (Wladimir J. van der Laan) d8ac901 doc: improve credits in release notes (Gregory Maxwell) bf8ad0d update release notes for 0.10.1rc3 (Wladimir J. van der Laan) 139cd81 Cap nAttempts penalty at 8 and switch to pow instead of a division loop. (Gregory Maxwell) bac6fca Set nSequenceId when a block is fully linked (Suhas Daftuar) 323de27 Initialization: setup environment before starting QT tests (dexX7) 7494e09 Initialization: setup environment before starting tests (dexX7) df45564 Initialization: set fallback locale as environment variable (dexX7) 57d1f46 Fix CheckBlockIndex for reindex. (mrbandrews) eae305f Fix missing lock in submitblock (Matt Corallo) 34127c7 doc: update release notes pre rc2 (Wladimir J. van der Laan) 1c62e84 Keep mempool consistent during block-reorgs (Gavin Andresen) 149c1d8 doc: Credit Jonas Nick in release notes (Wladimir J. van der Laan) bf1cc80 Docs: Use new Bitcoin.org download URLs (David A. Harding) 9e1cc16 doc: add historical release notes for 0.10.0 (Wladimir J. van der Laan) fe31225 update release notes for bitcoin#5953/bitcoin#5900 (Wladimir J. van der Laan) a1f425b Add a consistency check for the block chain data structures (Pieter Wuille) ae1479a update release notes after bitcoin#5941 (Wladimir J. van der Laan) aa587d4 Scale up addrman (Pieter Wuille) 0c6f334 Always use a 50% chance to choose between tried and new entries (Pieter Wuille) 214154e Do not bias outgoing connections towards fresh addresses (Pieter Wuille) 2218d4b Simplify hashing code (Pieter Wuille) cf0218f Make addrman's bucket placement deterministic. (Pieter Wuille) b788994 Switch addrman key from vector to uint256 (Pieter Wuille) 90bef66 No notable changes for minor release (Wladimir J. van der Laan) 4635a4c Translations update from transifex (Wladimir J. van der Laan) 0eccf0a Add commits (up to now) to release notes (Wladimir J. van der Laan) 78f64ef don't trickle for whitelisted nodes (Ruben de Vries) a316622 Clean out release notes for 0.10.1 (Wladimir J. van der Laan)
- Loading branch information
Showing
98 changed files
with
11,315 additions
and
4,111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Bitcoin Core 0.10.1 | ||
Bitcoin Core 0.10.2 | ||
===================== | ||
|
||
Setup | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Bitcoin Core 0.10.1 | ||
Bitcoin Core 0.10.2 | ||
===================== | ||
|
||
Intro | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env python2 | ||
# Copyright (c) 2014 The Bitcoin Core developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
# | ||
# Test -reindex with CheckBlockIndex | ||
# | ||
from test_framework import BitcoinTestFramework | ||
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException | ||
from util import * | ||
import os.path | ||
|
||
class ReindexTest(BitcoinTestFramework): | ||
|
||
def setup_chain(self): | ||
print("Initializing test directory "+self.options.tmpdir) | ||
initialize_chain_clean(self.options.tmpdir, 1) | ||
|
||
def setup_network(self): | ||
self.nodes = [] | ||
self.is_network_split = False | ||
self.nodes.append(start_node(0, self.options.tmpdir)) | ||
|
||
def run_test(self): | ||
self.nodes[0].generate(3) | ||
stop_node(self.nodes[0], 0) | ||
wait_bitcoinds() | ||
self.nodes[0]=start_node(0, self.options.tmpdir, ["-debug", "-reindex", "-checkblockindex=1"]) | ||
assert_equal(self.nodes[0].getblockcount(), 3) | ||
print "Success" | ||
|
||
if __name__ == '__main__': | ||
ReindexTest().main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.