diff options
| author | Pieter Wuille <[email protected]> | 2014-05-07 17:10:35 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-06-09 02:21:15 +0200 |
| commit | 18e72167ddfeaea95253b62994c6d64b55b35005 (patch) | |
| tree | 9ddc6e0b6866df01124b48355bb65deb1fa55411 /src/rpcserver.cpp | |
| parent | Move all post-chaintip-change notifications to ActivateBestChain (diff) | |
| download | discoin-18e72167ddfeaea95253b62994c6d64b55b35005.tar.xz discoin-18e72167ddfeaea95253b62994c6d64b55b35005.zip | |
Push cs_mains down in ProcessBlock
Diffstat (limited to 'src/rpcserver.cpp')
| -rw-r--r-- | src/rpcserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index 72a7fe83e..d4ceb7f99 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -254,7 +254,7 @@ static const CRPCCommand vRPCCommands[] = { "getblocktemplate", &getblocktemplate, true, false, false }, { "getmininginfo", &getmininginfo, true, false, false }, { "getnetworkhashps", &getnetworkhashps, true, false, false }, - { "submitblock", &submitblock, false, false, false }, + { "submitblock", &submitblock, false, true, false }, /* Raw transactions */ { "createrawtransaction", &createrawtransaction, false, false, false }, |