mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
rpc: fix loading rpc payment data from file
Got broken after making one of those micro optimizations requested on review..
This commit is contained in:
parent
eb49cb728e
commit
c573ee65f6
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ namespace cryptonote
|
||||||
TRY_ENTRY();
|
TRY_ENTRY();
|
||||||
boost::lock_guard<boost::mutex> lock(mutex);
|
boost::lock_guard<boost::mutex> lock(mutex);
|
||||||
m_directory = std::move(directory);
|
m_directory = std::move(directory);
|
||||||
std::string state_file_path = directory + "/" + RPC_PAYMENTS_DATA_FILENAME;
|
std::string state_file_path = m_directory + "/" + RPC_PAYMENTS_DATA_FILENAME;
|
||||||
MINFO("loading rpc payments data from " << state_file_path);
|
MINFO("loading rpc payments data from " << state_file_path);
|
||||||
std::ifstream data;
|
std::ifstream data;
|
||||||
data.open(state_file_path, std::ios_base::binary | std::ios_base::in);
|
data.open(state_file_path, std::ios_base::binary | std::ios_base::in);
|
||||||
|
|
Loading…
Reference in a new issue