diff options
| author | Gavin Andresen <[email protected]> | 2014-12-02 11:58:39 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2014-12-02 11:59:41 -0500 |
| commit | 1c7e09f0b9341c0ae7c00bf23baa407bbdc96a6e (patch) | |
| tree | 1ee0a668ea3b6d4faff25639014474675741ed19 /src/rpcserver.cpp | |
| parent | Fix rest.py test after #5376 (diff) | |
| parent | Test resurrecting memory pool transactions during chain re-org (diff) | |
| download | discoin-1c7e09f0b9341c0ae7c00bf23baa407bbdc96a6e.tar.xz discoin-1c7e09f0b9341c0ae7c00bf23baa407bbdc96a6e.zip | |
Merge pull request #5369
b2d0162 Test resurrecting memory pool transactions during chain re-org (Gavin Andresen)
3dd8ed7 Delay writing block indexes in invalidate/reconsider (Pieter Wuille)
798faec Add 'invalidateblock' and 'reconsiderblock' RPC commands. (Pieter Wuille)
Diffstat (limited to 'src/rpcserver.cpp')
| -rw-r--r-- | src/rpcserver.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index 851221218..90695611f 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -269,6 +269,8 @@ static const CRPCCommand vRPCCommands[] = { "blockchain", "gettxout", &gettxout, true, false, false }, { "blockchain", "gettxoutsetinfo", &gettxoutsetinfo, true, false, false }, { "blockchain", "verifychain", &verifychain, true, false, false }, + { "blockchain", "invalidateblock", &invalidateblock, true, true, false }, + { "blockchain", "reconsiderblock", &reconsiderblock, true, true, false }, /* Mining */ { "mining", "getblocktemplate", &getblocktemplate, true, false, false }, |