mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +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
992b7ce30f
commit
4df8f9c414
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ namespace cryptonote
|
|||
{
|
||||
TRY_ENTRY();
|
||||
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);
|
||||
std::ifstream data;
|
||||
data.open(state_file_path, std::ios_base::binary | std::ios_base::in);
|
||||
|
|
Loading…
Reference in a new issue