Use unique name for AlertNotify tempfile

This commit is contained in:
Casey Rodarmor 2015-08-05 23:10:14 -04:00
parent 149f96c9b0
commit 231c5601a1
1 changed files with 2 additions and 2 deletions

View File

@ -162,8 +162,8 @@ BOOST_AUTO_TEST_CASE(AlertNotify)
SetMockTime(11);
const std::vector<unsigned char>& alertKey = Params(CBaseChainParams::MAIN).AlertKey();
boost::filesystem::path temp = GetTempPath() / "alertnotify.txt";
boost::filesystem::remove(temp);
boost::filesystem::path temp = GetTempPath() /
boost::filesystem::unique_path("alertnotify-%%%%.txt");
mapArgs["-alertnotify"] = std::string("echo %s >> ") + temp.string();