diff options
| author | instagibbs <[email protected]> | 2016-05-09 11:26:37 -0400 |
|---|---|---|
| committer | instagibbs <[email protected]> | 2016-05-09 11:26:37 -0400 |
| commit | 657e07efa34ffe9d8614a618e00452c9ee7c0e0d (patch) | |
| tree | 4a67d2948791dc34d02e48883513fb6f1b1f5bf3 /src/main.cpp | |
| parent | Remove state arg from ReconsiderBlock (diff) | |
| download | discoin-657e07efa34ffe9d8614a618e00452c9ee7c0e0d.tar.xz discoin-657e07efa34ffe9d8614a618e00452c9ee7c0e0d.zip | |
Rename ReconsiderBlock func to reflect real behavior
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9489bb1c4..11eaa055d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3011,7 +3011,7 @@ bool InvalidateBlock(CValidationState& state, const CChainParams& chainparams, C return true; } -bool ReconsiderBlock(CBlockIndex *pindex) { +bool ResetBlockFailureFlags(CBlockIndex *pindex) { AssertLockHeld(cs_main); int nHeight = pindex->nHeight; |