diff options
| author | practicalswift <[email protected]> | 2017-03-28 08:20:08 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-04-02 15:52:41 +0200 |
| commit | 4b87973c32bcaa5fa7509793e4f0c4f4f981f21b (patch) | |
| tree | d845eb4178f479f52fbd1bbca1ed45756088cebc | |
| parent | Merge #10077: [qa] Add setnetworkactive smoke test (diff) | |
| download | discoin-4b87973c32bcaa5fa7509793e4f0c4f4f981f21b.tar.xz discoin-4b87973c32bcaa5fa7509793e4f0c4f4f981f21b.zip | |
[rpc] Remove auth cookie on shutdown
Accidentally removed in 40b556d3742a1f65d67e2d4c760d0b13fe8be5b7
| -rw-r--r-- | src/rpc/server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index ef9fecd8f..141062b3c 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -322,6 +322,7 @@ void StopRPC() { LogPrint(BCLog::RPC, "Stopping RPC\n"); deadlineTimers.clear(); + DeleteAuthCookie(); g_rpcSignals.Stopped(); } |