aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/blockchain.cpp
diff options
context:
space:
mode:
authorinstagibbs <gsanders87@gmail.com>2016-05-09 11:26:37 -0400
committerinstagibbs <gsanders87@gmail.com>2016-05-09 11:26:37 -0400
commit657e07efa34ffe9d8614a618e00452c9ee7c0e0d (patch)
tree4a67d2948791dc34d02e48883513fb6f1b1f5bf3 /src/rpc/blockchain.cpp
parentaddb9d2a092b4fd0384d4ff82e9607e5411eab97 (diff)
downloadbitcoin-657e07efa34ffe9d8614a618e00452c9ee7c0e0d.tar.xz
Rename ReconsiderBlock func to reflect real behavior
Diffstat (limited to 'src/rpc/blockchain.cpp')
-rw-r--r--src/rpc/blockchain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp
index d221012afa..cf3c73c4df 100644
--- a/src/rpc/blockchain.cpp
+++ b/src/rpc/blockchain.cpp
@@ -980,7 +980,7 @@ UniValue reconsiderblock(const UniValue& params, bool fHelp)
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found");
CBlockIndex* pblockindex = mapBlockIndex[hash];
- ReconsiderBlock(pblockindex);
+ ResetBlockFailureFlags(pblockindex);
}
CValidationState state;