Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
defunctec
crown-core
Commits
faa303a9
Commit
faa303a9
authored
11 years ago
by
Gavin Andresen
Browse files
Options
Download
Plain Diff
Merge pull request #3370 from sipa/headersfirst3
Prepare block connection logic for headers-first
parents
efcdbff6
e06a22b5
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/init.cpp
+1
-1
src/init.cpp
src/main.cpp
+271
-220
src/main.cpp
src/main.h
+12
-8
src/main.h
with
284 additions
and
229 deletions
+284
-229
src/init.cpp
View file @
faa303a9
...
...
@@ -983,7 +983,7 @@ bool AppInit2(boost::thread_group& threadGroup)
// scan for better chains in the block chain database, that are not yet connected in the active best chain
CValidationState
state
;
if
(
!
ConnectBestBlock
(
state
))
if
(
!
ActivateBestChain
(
state
))
strErrors
<<
"Failed to connect best block"
;
std
::
vector
<
boost
::
filesystem
::
path
>
vImportFiles
;
...
...
This diff is collapsed.
Click to expand it.
src/main.cpp
View file @
faa303a9
This diff is collapsed.
Click to expand it.
src/main.h
View file @
faa303a9
...
...
@@ -165,10 +165,8 @@ bool IsInitialBlockDownload();
std
::
string
GetWarnings
(
std
::
string
strFor
);
/** Retrieve a transaction (from memory pool, or from disk, if possible) */
bool
GetTransaction
(
const
uint256
&
hash
,
CTransaction
&
tx
,
uint256
&
hashBlock
,
bool
fAllowSlow
=
false
);
/** Connect/disconnect blocks until pindexNew is the new tip of the active block chain */
bool
SetBestChain
(
CValidationState
&
state
,
CBlockIndex
*
pindexNew
);
/** Find the best known block, and make it the tip of the block chain */
bool
ConnectBestBlock
(
CValidationState
&
state
);
bool
ActivateBestChain
(
CValidationState
&
state
);
int64_t
GetBlockValue
(
int
nHeight
,
int64_t
nFees
);
unsigned
int
GetNextWorkRequired
(
const
CBlockIndex
*
pindexLast
,
const
CBlockHeader
*
pblock
);
...
...
@@ -716,6 +714,8 @@ public:
unsigned
int
nBits
;
unsigned
int
nNonce
;
// (memory only) Sequencial id assigned to distinguish order in which blocks are received.
uint32_t
nSequenceId
;
CBlockIndex
()
{
...
...
@@ -729,6 +729,7 @@ public:
nTx
=
0
;
nChainTx
=
0
;
nStatus
=
0
;
nSequenceId
=
0
;
nVersion
=
0
;
hashMerkleRoot
=
0
;
...
...
@@ -749,6 +750,7 @@ public:
nTx
=
0
;
nChainTx
=
0
;
nStatus
=
0
;
nSequenceId
=
0
;
nVersion
=
block
.
nVersion
;
hashMerkleRoot
=
block
.
hashMerkleRoot
;
...
...
@@ -958,23 +960,23 @@ public:
AbortNode
(
msg
);
return
Error
();
}
bool
IsValid
()
{
bool
IsValid
()
const
{
return
mode
==
MODE_VALID
;
}
bool
IsInvalid
()
{
bool
IsInvalid
()
const
{
return
mode
==
MODE_INVALID
;
}
bool
IsError
()
{
bool
IsError
()
const
{
return
mode
==
MODE_ERROR
;
}
bool
IsInvalid
(
int
&
nDoSOut
)
{
bool
IsInvalid
(
int
&
nDoSOut
)
const
{
if
(
IsInvalid
())
{
nDoSOut
=
nDoS
;
return
true
;
}
return
false
;
}
bool
CorruptionPossible
()
{
bool
CorruptionPossible
()
const
{
return
corruptionPossible
;
}
unsigned
char
GetRejectCode
()
const
{
return
chRejectCode
;
}
...
...
@@ -1041,6 +1043,8 @@ public:
/** The currently-connected chain of blocks. */
extern
CChain
chainActive
;
/** The currently best known chain of headers (some of which may be invalid). */
extern
CChain
chainMostWork
;
/** Global variable that points to the active CCoinsView (protected by cs_main) */
extern
CCoinsViewCache
*
pcoinsTip
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment