File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
// Copyright (c) 2010 Satoshi Nakamoto
2
- // Copyright (c) 2009-2018 The Bitcoin Core developers
2
+ // Copyright (c) 2009-2019 The Bitcoin Core developers
3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
@@ -51,7 +51,7 @@ struct RPCCommandExecution
51
51
explicit RPCCommandExecution (const std::string& method)
52
52
{
53
53
LOCK (g_rpc_server_info.mutex );
54
- it = g_rpc_server_info.active_commands .insert (g_rpc_server_info.active_commands .cend (), {method, GetTimeMicros ()});
54
+ it = g_rpc_server_info.active_commands .insert (g_rpc_server_info.active_commands .end (), {method, GetTimeMicros ()});
55
55
}
56
56
~RPCCommandExecution ()
57
57
{
You can’t perform that action at this time.
0 commit comments